#container{
    width: 100%;
    min-height: calc(100vh - 21.8vh);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#contact{
    margin: 0 1rem;
    width: 30%;
}

#location{
    padding: 1rem;
    width: 50%;
}

h3{
    color: #668d28;
    margin-top: 2rem;
    margin-left: 0.5rem;
}

p{
    color: #40661d;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
}

#contact form{
    display: flex;
    flex-direction: column;
}

#contact form input, #contact form textarea{
    margin: 1rem;
    padding: 1rem;
    outline: none;
    border: none;
    border-bottom: 1px solid #40661d;
}

#contact form input:focus, #contact form textarea:focus{
    border: #668d28 1px solid;
}

#contact form input[type="submit"]{
    border: 1px solid #40661d;
    border-radius: 3px;
    background-color: transparent;
    transition: background-color 0.3s linear;
}

#contact form input[type="submit"]:hover{
    cursor: pointer;
    background-color: #668d28;
}

@media screen and (max-width: 664px){
    #contact, #location{
        width: 100%;
    }
}