body{
    font-family: "Montserrat", serif;
}
label{
    margin-top: 10px;
}
button{
    /* width: 7vw; */
    /* height: 4vh; */
    background-color: white;
    text-align: center;
    align-self: center;
    padding: 0 0 .15em 0;
    transition:color 0.3s ease-in-out;
}
button:hover{
    transition: 0.5s;
    cursor: pointer;
    background-color: lightblue;
}
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%;
    margin-left: 2%;
}
#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;
}
.main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2em 0;
}
.header_text{
    font-size: 4rem;
    font-weight: 600;
    padding: 1%em;
}
.main_hero{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 3% 0;
    width: 100%;
}
.hero_image img{
    border-radius: 20px;
    width: 40vw;
    height: auto;
}
.hero_image{
    border-radius: 20px;
}
.hero_form form{
    display: flex;
    flex-direction: column;
}
.input{
    display: flex;
    flex-direction: column;
    padding: 1% 0;
}
.input input{
    height: 4vh;
    width: 30vw;
    border: 1px solid rgb(114, 111, 111);
    border-radius: 10px;
}
.input textarea{
    height: 12vh;
}

.input input,textarea,button{
    /* border: solid black; */
    border-radius: 10px;
    resize: none;
    background-color: white;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: "Montserrat", serif;
    padding: .25em;
}
.regular_text{
    padding: 1em 0;
    font-size: 1.25rem;
}
#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;
    }
  }