@font-face {
    font-family: 'Mija';
    src: url('/assets/fonts/Mija-Regular.woff2') format('woff2'),
         url('/assets/fonts/Mija-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mija';
    src: url('/assets/fonts/Mija-Bold.woff2') format('woff2'),
         url('/assets/fonts/Mija-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
:root {
    --base-font-size: 16px;
}
body {
    font-size: var(--base-font-size);
}
.font-nunito {
    font-family: 'Nunito', sans-serif;
}
.font-mija {
    font-family: 'Mija', sans-serif;
}
.font-lexend {
    font-family: 'Lexend', sans-serif;
}

body {
    font-family: 'Mija', sans-serif;
    background-image: url('../images/square.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}
