@import 'variable';

.cfe {
    
    * {
        margin: 0px;
        padding: 0px;
        box-sizing: border-box;
    }
    *:focus {
        box-shadow: none;
        outline: none;
    }
   
    p {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    a,
    p,
    span,
    section,
    label,
    div {
        font-size: 14px;
        color: $body-color;
        font-weight: 400;
        line-height: 1.4;
    }

    a {
        text-decoration: none;
        color: $primary-color;

        &:hover {
            color: $secondary-color;
        }
    }

    h1, h2, h3, h4, h5, h6, p, figur, a {
        margin: 0px;
    }

    h1, h2, h3, h4, h5, h6 {
        font-weight: normal;
        -webkit-font-variant-ligatures: common-ligatures;
        font-variant-ligatures: common-ligatures;
    }

    a:hover,
    a:focus,
    input:focus,
    button:focus,
    a:active {
        text-decoration: none;
        outline: none;
        outline-offset: 0px;
        box-shadow: none;
    }
    ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    img {
        display: block;
        max-width: 100%;
    }

}