@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Slab:wght@300;400&display=swap');

:root {
    --black: #121212;
    --pink: #d13388;
    --background: #f5f5f5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: var(--black);
    background-color: var(--background);
    font-family: "Roboto", sans-serif;
    background-image: url("/painted-light.jpg");
    margin-bottom: 3rem;
    background-size: cover;
    background-repeat: repeat-x;
    background-attachment: fixed;
    background-position: left top;
}

@media screen and (min-width: 900px) {
    body {
        background-image: url("/painted.jpg");
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Slab", serif;
    font-weight: lighter;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--pink);
}

ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
}

header a {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

header img {
    margin: auto;
    width: 80%;
}

@media screen and (max-width: 480px) {
    header img {
        width: 100%;
    }
}

nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 18pt;
    font-weight: lighter;
    margin-bottom: 2rem;

    font-family: "Roboto Slab";
}

@media screen and (max-width: 400px) {
    nav {
        font-size: unset;
    }
}

nav a {
    color: var(--black);
    text-decoration: none;
    border-bottom: solid #0000 1px;
}

nav .current, nav a:hover {
    border-bottom: solid black 1px;
}

main {
    display: grid;
    grid-template-columns: 1fr min(80ch, 90%) 1fr;
}

main > * {
    grid-column: 2;
}

#content {
    font-size: 12pt;
    line-height: 1.7em;
}

@media screen and (min-width: 900px) {
    #content {
        padding: 2rem;
        background-color: var(--background);
        border-radius: 12px;
        filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.1));
    }
}

.float-left {
    width: 50%;
    float: left;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

.float-right {
    width: 50%;
    float: right;
    padding-left: 1rem;
}

@media screen and (max-width: 480px) {
    .float-left, .float-right {
        padding: 0;
        padding-bottom: 1rem;
        width: 100%;
        float: clear;
    }

    .mobile-center {
        text-align: center;
    }
}

#tuition-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    line-height: initial;
}

#tuition-box > div {
    text-align: center;
    flex: 1 1 0;
    padding: 0.5rem 0;
    background-color: var(--background);
    border-radius: 12px;
    border: 1px solid rgb(219, 217, 217);
    /* filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1)); */

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 900px) {
    #tuition-box {
        flex-direction: column;
        align-items: center;
    }

    #tuition-box > div {
        max-width: 300px;
    }
}

#tuition-box small {
    font-size: 12pt;
}

#tuition-box h2 {
    font-weight: bold;
    border-bottom: 1px solid rgb(219, 217, 217);
}

#tuition-box ul {
    list-style: none;
    font-size: 10pt;
    margin: unset;
    padding: 0 0.5rem;
}

#tuition-box span {
    border-top: 1px solid rgb(219, 217, 217);
    font-size: 10pt;
    font-weight: bold;
    padding: 0 0.5rem;
    padding-top: 0.5rem;
}

#tuition-box li {
    padding-bottom: 1rem;
}

#media-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#voice-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#voice-header h2 {
    display: inline-block;
}

audio {
    margin-bottom: 1rem;
}

iframe {
    width: 90%;
}

.unstyled-list {
    font-family: "Roboto Slab", serif;
    font-weight: lighter;
    list-style: none;
    margin-left: 0;
    font-size: 16pt;
}
