body,
html {
    height: 100%
}

.titleText {
    font-family: "the-seasons", sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 30pt;
}

.bodyText {
    font-family: "ivypresto-display", serif;
    font-weight: 100;
    font-style: italic;
}

.linkText {
    font-family: "geologica-variable", sans-serif;
    font-variation-settings: "CRSV" 0, "SHRP" 0, "slnt" 0, "wght" 100;
}

.topnav {
    position: relative;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #333;
    text-align: center;
    padding: 24pt 16px;
    text-decoration: none;
    font-size: 12pt;
}

/* Change the color of links on hover */
.topnav a:hover {
    /* background-color: #ddd; */
    color: black;
}

/* Centered section inside the top navigation */
.topnav-centered a {
    float: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24pt;
}

/* Right-aligned section inside the top navigation */
.topnav-right {
    float: right;
}

/* Responsive navigation menu - display links on top of each other instead of next to each other (for mobile devices) */
@media screen and (max-width: 600px) {
    .topnav a {
        padding: 12pt 16px;
        line-height: normal;
    }

    .topnav a,
    .topnav-right {
        float: none;
        display: block;
    }

    .topnav-centered a {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
}

.centerHeroImage {
    display: grid;
    grid-template-columns: repeat(1, minmax(100px, 600px));
    justify-content: center;
    justify-items: center;
    grid-gap: 28px;
    margin: 10px 28px;
}

.centerHeroImage img {
    width: 100%;
    max-height: 900px;
}