
body {
    margin: 0;
    background-color: #f0f0f0;
    color: #053157;
    min-height: 100vh;
    font-size: 18px;
}

.text-marcellus {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;    
}

.text-yellowtail {
    font-family: "Yellowtail", serif;
    font-weight: 400;
    font-style: normal;       
}

h2, h3 {
    margin: .25em 0;
    font-weight: 400;    
}

h4, h5, h6 {
    margin: .25em 0; 
}

h1 {
    font-size: 30px;
    font-weight: 500;
}

h1 > span {
    display: block;
    font-family: "Yellowtail", serif;
    font-size: 96px;
}

h2 {
    font-size: 1.75em;    
    font-weight: 600;
    margin-bottom: 1em;
}

h3 {
    font-size: 1.5em;    
    font-weight: 600;
}

h4 {
    font-size: 1.5em;
}

.content > h4 {
    font-weight: 700; 
}

.content > h4:not(:first-of-type) {
    margin-top: 2em;
}

.content > p {
    margin-bottom: 1em;
}

a {
    color: #1b79b6;
}

a:hover {
    color: white;
}

section:not(.hero) {
    margin: 0 0 2em;
    padding: 1em 0 0;
    border-top: 1px solid #6e85c2;
}

section > .wrapper {
    margin: auto;
    max-width: 85vw;
}

section .content {
    padding: 1.25em;
}

.content {
    margin: 1em 0 2em;
}

.content:last-of-type {
    margin-bottom: 0;
}

.flex {
    display: flex;    
    gap: 1em;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.flex > div {
    flex: 1 100%;
}

section > .content.border {
    padding: 1.25em;    
}

.border {
    border: 3px solid #436298;
    border-radius: 20px;    
}

.scrim {
    background-color: #949fe352;
}

section.hero {
    background-color: #8BC6EC;
    background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);    
    padding: 4vh 0;
}

.hero a {
    color: #ffca00;
}

.media {
    width: 100%;
    margin: 1em 0;
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 24px;
    }
    h1 > span {
        font-size: 76px;
    }
}

@media screen and (max-width: 799px) {
    section.hero {
        padding: 6vh 0;        
    }
}

@media screen and (min-width: 800px) {
    h1 {
        font-size: 34px;
    }
    
    h1 > span {
        font-size: 120px;
    }
    
    h2 {
        font-size: 2em;    
        font-weight: 600;
    }

    h3 {
        font-size: 1.75em;
    }
    
    h4 {
        font-size: 1.75em;
    }    

    p, ul {
        font-size: 1.25em;
    }

    section.hero {
        padding: 8vh 0;
    }    

    section:not(.hero) {
        padding: 3em 0 1em;
    }    

    .media { 
        width: revert;
    }

    .flex > div {
        flex: unset;
        width: min-content;
    }
}