@import url('https://fonts.googleapis.com/css2?family=Eagle+Lake&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    display: flex;
    flex-flow: column nowrap;
    min-height: 100vh;
    font-size: x-large;
}

header, #main {
    padding-top: 24px;
}

header, #main, footer {
    font-family: monospace;
    text-align: center;
}

header {
    text-transform: uppercase;
}

#site-name {
    font-size: xx-large;
}

#site-name a {
    text-decoration: none;
    color: black;
}

header a:hover {
    text-shadow: 0 0 25px mediumpurple;
}

#nav {
    max-width: 80%;
    margin: auto;
    padding-top: 20px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}
#nav a {
    display: none;
    padding-right: 28px;
    padding-left: 28px;
}
#nav a.menu-button {
    display: block;
}
#nav.responsive a {
    display: block;
}
#nav span.nav-delimiter {
    display: none;
}
#nav .active {
    font-weight: bold;
}

.container {
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
}

#main {
    max-width: calc(100% - 2rem);
    margin: auto;
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    text-align: left;
}

#main.centered-text {
    justify-content: center;
    padding-bottom: 4%;
}

#date-and-time {
    font-style: italic;
}

#content p {
    margin: 24px auto;
}

#hero {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;
    gap: 32px;
}

.left-photo {
    flex: 1.25;
}

.right-info {
    flex: 2;
}

img {
    max-width:100%;
}

footer {
    font-size: smaller;
    margin: 20px auto;
}

@media only screen and (min-width: 600px) {
    #main {
        max-width: 75%;
    }
    #hero {
        flex-flow: row nowrap;
    }
    #nav {
        flex-flow: row nowrap;
    }
    #nav a {
        display: inline;
    }
    #nav a.menu-button {
        display: none;
    }
    #nav span.nav-delimiter {
        display: inline;
    }
    body {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}
@media only screen and (min-width: 768px) {
    #main {
        max-width: 50%;
    }
    body {
        padding-top: 36px;
        padding-bottom: 36px;
    }
}