
h2{
    margin: 0;
    padding: 0;
    padding-bottom: 16px;
}

input{
    margin-top: 2px;
    margin-bottom: 16px;
    border-radius: 4px;
    border: white;
}

textarea{
    margin-top: 2px;
    margin-bottom: 16px;
    border-radius: 4px;
    border: white;
}

.contact-form{
    display: flex;
    flex-direction: column;
    width: 500px;
    background-color: #DCDCDC;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 16px;
    border-radius: 8px;
}

.contact-form input {
    height: 22px;
}

.contact-form input, textarea {
    font-family: inherit; 
    font-size: inherit; 
  }

button{
    background-color: rgb(0, 128, 0);
    color: white;
    height: 40px;
    width: 200px;
    font-size: 16px;
    border-style: none;
    cursor: pointer;
    align-self: center;
    border-radius: 4px;

}