/*CUSTOM FONTS*/
@font-face {
    font-family: 'Gordita';
    src: url('../fonts/Gordita_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('../fonts/Gordita_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('../fonts/Gordita_Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/fa-regular-400.woff2') format('woff2');
    font-display: block;
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-style: normal;
    src: url('../fonts/fa-solid-900.woff2') format('woff2');
    font-display: block;
}

/*BASE STYLES*/

* {
    box-sizing: border-box;
}

main{
    min-height: 100vh;

}

a{
    font-family: 'Gordita', system-ui, sans-serif;
    text-decoration: none;
}

body {
    font-family: 'Gordita', system-ui, sans-serif;
    text-decoration: none;
    background-color: black;
    margin: 0;
    color: white;
}
