*{
    margin: 0;
    padding: 0;
}
html{
    font-size: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}
#contact{
    padding: 25px 0 25px 0;
    justify-content: center;
    align-items: center;
    /* background image */
    background-image: url(chef_background.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-bottom: 0%;
}
#contact h1{
    text-align: center;
    font-size: 4rem;
    margin-top: 8%;
   font-family: "Rye", serif;
   margin-bottom: 10%;
   color: orange;
}
#contact_row{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 100px 0 100px;
    flex-wrap: wrap;
}
.contact_col{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.contact_col p,h3{
    font-weight: bold;
    color: #aaae85;
    margin: 10px;
    font-size: 1.1rem;
}
.contact_col p a{
    text-decoration: none;
    color: #aaae85;
}
#social a{
    color: #aaae85;
    margin: 3px;
}
.contact_col form{
    height: 500px;
    display: flex;
    flex-direction: column;
    background-color: #1b1b1b;
    border: 1px solid burlywood;
    width: 50%;
    padding: 20px 40px 20px 40px;
}
.contact_col form h2{
    
    text-align: center;
    font-family: cursive;
    color:burlywood;
    margin-bottom: 20px;
}
.contact_col form input{
    width: 100%;
    height: 17pt;
    padding: 20px;
    margin: 5px;
    margin-bottom: 10px;
    border: 1px solid black;
}
.contact_col form textarea{
    width: 100%;
    margin: 5px;
    border: 1px solid black;
    margin-bottom: 10px;
}
.contact_col button{
       margin: auto;
       padding: 10px;
       color: #fff;
       background-color: transparent;
       border: 3px solid red;
       border-radius: 25px;
       border-style: outset;
}