@font-face {
    font-family: 'Blonkra';
    src: url('/fonts/Blonkra.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stack Sans Headline';
    src: url('/fonts/StackSansHeadline.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Monilora';
    src: url('/fonts/Monilora.ttf') format('truetype');
    font-display: swap;
}

body { 
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    min-height: 100dvh;
    position: relative;
    }

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 

    background-image: radial-gradient(circle, rgba(137, 178, 224, 1) 0%, rgba(217, 229, 214, 1) 50%, rgba(255, 255, 255, 1) 100%, rgba(237, 221, 83, 1) 0%);
    background-repeat: no-repeat;

}

.navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 15%;

}

.navbar-logo {
    width: 6em;
    margin: 0;
    padding-top: 3dvh;
    padding-left: 6dvh;
    padding-bottom:8dvh;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding-left: 3dvh;
    padding-bottom: 5em;
    max-width: 15vh;

}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1em;
    color: royalblue;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Monilora', sans-serif;
    font-weight: 200;
    text-shadow: 0.05rem 0.05rem 0.1rem #7d96bf;
}

.navbar a:hover {
    color: midnightblue;
    font-size: 1.3em;
    transition: color 0.2s, font-size 0.5s;
}

.container {
    margin: 0;
    padding-left: 35dvh;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.content {
    display: flex;
    flex-direction: column;
    width: 48%;
    margin: 0;
    padding: 20dvh 0 20dvh 10dvh;
}

footer {
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: center;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 200;
    font-size: small;
    color: midnightblue;
}

.content h2 {
    font-family: 'Stack Sans Headline', serif;
    color: #485D81;
}

@media screen and (max-width: 768px) {

    body { 
        flex-direction: column;
        margin: 0; 
        position: relative;
        -webkit-text-size-adjust: none;
        text-size-adjust: none;
    } 

    body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 

    background-image: radial-gradient(circle, rgba(137, 178, 224, 1) 0%, rgba(217, 229, 214, 1) 50%, rgba(255, 255, 255, 1) 100%, rgba(237, 221, 83, 1) 0%);
    background-repeat: no-repeat;

    }

    .navbar {
    width: 100%;    
    max-width: 100%; 
    min-height: auto;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    padding: 1rem 0;
    box-sizing: border-box;
    }

    .navbar-logo {
    width: 6em;
    margin: 0 0 1rem 0;
    padding: 0;
    }

    .navbar ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    }

    .navbar a {
    padding: 0.5rem 1rem;
    }

    .break {
        flex-basis: 100%;
        height: 0;
    }

    .mobile-break {
        flex-basis: 100%;
        height: 0;
    }
    
    .content {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        flex-shrink: 0;
        flex-wrap: wrap;
        flex-basis: 100%;
        min-height: auto;
        flex-direction: row;
        padding: 3rem 2rem;
        min-width: 0;
        box-sizing:border-box;
    }

    .content h2 {
        font-size: 6dvw;
        margin: 0;
        padding-bottom: 0.3em;
    }

    footer {
        font-size: x-small;
    }

}