body{
    font-family: "Montserrat", serif;
    
}
nav{
    padding-top: 1em;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

#site_title{
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
}
#site_logo{
    margin-bottom: -2.1%;
}
#site_logo img{
    width: 5em;
    height: fit-content;
}
#nav_links{
    display: flex;
    flex-direction: row;
    padding: 1.25em;
    justify-content: center;
}
.links{
    padding: 0em 2em;
    font-size: 1.25rem;
    font-weight: 500;
}
a{
    text-decoration: none;
    color: inherit;
}
a:visited{
    text-decoration: none;
    color: inherit;
}

.container {
    text-align: center;
    max-width: 800px;
    margin: 2% auto;
    background: white;
    padding: 2% 8%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
img, video {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}
#hamburger{
    display: none;
}
.hidden {
    display: none;
}
@media (max-width: 768px) {
    nav{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1em;
    }
    body{
        margin: 16px;
    }
    #hamburger {
        display: flex;
        flex-direction: row-reverse;
    }
    #nav_links{
        display: none;
    }
    .main_hero{
        flex-direction: column;
    }
    .input {
        justify-content: center;
        align-self: center;
    }
    .input input{
        height: auto;
        width: auto;
        border: 1px solid rgb(114, 111, 111);
        border-radius: 10px;
    }
    #site_title{
        display: none;
    }
    #nav {
        background-color: #ffffff;
        width: auto;
        margin-top: 0;
    }
    .nav-con{
        position: absolute;
        top: 32px;
        right: 32px;
        display: flex;
        flex-direction: column;
        align-items: right;
        justify-content: center;
    }
    .options {
        padding: 5px;
    }
    .options:hover{
      background-color: lightblue;
  }
  }