/* ..... */

#contact_form {
    margin: auto;
    padding:3%;
    min-height: calc(100vh - 235px);
    display:flex;
    justify-content: center;
    background-image: url(../images/contact-map.jpg);
}

form {
    width: 500px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: rgba(231, 196, 131, 0.8);
    opacity:95%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
}
form h3{
    font-family: 'Marck Script', cursive;
    font-size: 1.5em;
}

label{
    font-size: 1.2em;
    margin-bottom: 5px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, cursive;

}
input, select, textarea {
    margin-bottom: 15px;
    height:2em;
    font-size: 1.2em;
}

.submit {
    border-radius: 10px;
    color:white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, cursive;
    background-color: rgba(131, 66, 44);
}

.submit:hover {
    background-color: rgb(161, 69, 53);
    cursor: pointer;
}

#fullname {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#fullname input {
    width: 48%;
}

textarea {
    resize: none;
    height: 150px;
}

.small {
    font-size: 0.7em;
    font-style: italic;
}

