/* ========== FONTS ========== */

@font-face {
    font-family: 'EstedadV';
    font-weight: 100 1000;
    font-display: fallback;
    ascent-override: 100%;
    src: url('../fonts/estedad/variable.woff2') format(woff-variations),
         url('../fonts/estedad/variable.woff2') format(woff),
}

@font-face {
    font-family: 'Estedad';
    font-weight: normal;
    src: url('../fonts/estedad/regular.woff2') format(woff),
}

@font-face {
    font-family: 'Estedad';
    font-weight: bold;
    src: url('../fonts/estedad/bold.woff2') format(woff),
}

/* ========== DEFAULTS ========== */

*, ::before, ::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    cursor: default;
    font-family: 'Estedad', 'serif';
}

@supports (font-variation-settings: normal) {
    
    body {
        font-family: 'EstedadV', 'serif';
        font-feature-settings: 'ss03'
    }
    
}

img, label {
    display: block;
}

input, select, text-area {
    font-family: inherit;
    font-size: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}