_vars.scss 472 Bytes
$main: #012060;
$black: #363A3F;
$white: #FFFFFF;
$blue: #42AAFF;



// @mixin co() {
//     font-family: 'Cormorant SC', serif;
// }

@mixin font-face($font-family, $path, $font-weight, $font-style) {
    @font-face {
        font-family: $font-family;
        src: url('../fonts/#{$path}.woff2') format('woff2'),
        url('../fonts/#{$path}.woff') format('woff');
        font-weight: $font-weight;
        font-style: $font-style;
        font-display: swap;
    }
}