.jost-regular {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

  footer {
    height: 5%;
    font-size: 8pt;
    font-weight: 200;
    text-align: center;
    color: darkgray;
    font-family: "Jost", sans-serif;
}

header {
    display: flex;
    flex-direction: row;
    font-family: "Jost", sans-serif;
    padding: 50px;
}
p {
    font-family: "Jost", sans-serif;
}
h1, h2, h3, h4, h5 {
    margin: 0;
    font-family: "Jost", sans-serif;
}
html {
    margin: 0;
    padding: 0;
    height: 100%;
}
.contact {
    text-align: center;
    padding: 5%;
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 2vh;
    gap: 20px;
    justify-content: center;
    animation: fadeInAnimation ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

#navimenu {
    display: flex;
    flex-direction: row;
    justify-content: right;
    width:85%;
    gap: 50px;
}
#nav-menu {
    display: none;
    font-family: "Jost", sans-serif;
}

.title {
    width: 15%;
}

a.nav-link:link
{
   color: black;
   text-decoration: none;
}
a.nav-link:visited
{
   color: black;
   text-decoration: none;
}
a.nav-link:hover
{
   color: black;
   text-decoration: underline;
}
a.nav-link:active
{
   color: black;
   text-decoration: none;
}

.currentpage {
    color: rgb(100, 100, 100);
    text-decoration: none;
}

.desc {
    font-size: 70%;
    margin: 0;
    color: rgb(82, 82, 82);
    font-style: italic;
    text-align: left;
    margin-left: 15px;
    font-family: "Jost", sans-serif;

}

.menu-icon {
    display: none;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@media (max-width: 1200px) {
    .menu-icon {
        display: block; /* Show menu-icon on mobile devices */
        color: rgb(100, 100, 100);
        font-size: 80%;
    }
    #nav-menu {
        display: none;
    }
    #navimenu {
        display: none;
    }
    #nav-menu.open {
        display: block;
        animation: fadeInAnimation ease 0.5s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
        text-align: center;
        height: 96.8%;
    }
    header {
        padding-top: 4.58vw;
        padding-left: 4.58vw;
        padding-right: 4.58vw;
        padding-bottom: 3.5vw;
        align-items: normal;
        justify-content: start;
        display: flex;
        flex-direction: row;

    }
    body {
        height: 85%;
        width: 100%;
        margin: 0;
    }
    .title {
        flex-grow: 10;
    }
    h1 {
        font-size: 6vw; /* Adjust font size for headers */
        margin: 0;
    }
    #right.closed {
        display: none;
    }
    a.nav-link, .currentpage {
        font-size: 150%;
    }
    p.nav-link {
        font-size: 0;
        margin-top: 6vw;
    }
    #title {
        font-size: 100%;
    }
    .smaller {
        font-size: 90%; /* Slightly larger font size for better readability */
    }
    footer {
        font-size: 2vw; /* Larger font for footer */
        height: auto;
        margin: 0;
    }
    img {
        width: 100%; /* Adjust image size on mobile */
        height: auto;
    }
    .desc {
        font-size: 2vw; /* Larger description text */
    }
}
