main {
    display: flex;
    justify-content: center;
}

header{
    margin-bottom: 30px;
}

#contact {
    width: 60%;
}

#contact>* {
    text-align: center;
}

#contact h2 {
    margin-bottom: 20px;
}

#contact form {
    text-align: left;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

#contact input {
    height: 50px;
    font-size: 1.2em;
    border: none;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.09);
}

#contact label {
    margin: 2em 0 1em 0;
}

#contact textarea {
    border: none;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.09);
}

input[type="submit"] {
    font-weight: 700;
    color: #bbbbbb;
    background-color: #494949;
    margin: 2em auto;
    width: 180px;
    text-align: center;
    border-radius: 60px;
}