header{
    display: flex;
    height: 20%;
    justify-content: center;
    padding: 20px;
}

header img{
    height: 100%;
    width: 30%;
    min-width: 200px;
}

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

.content{
    width: 80%;
    padding: 100px 0 100px 0;    

}

.content h3{
    font-family: 'Oswald', sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    border-bottom: 3px solid #ed1b24;
    margin: 0 auto;
    width: 220px;
}

.content b{
    font-size: 18px;
}
.content p{
    font-family: 'Source Sans Pro', sans-serif;
    text-align: justify;
    line-height: 2;
    margin-top: 60px;
}

.submit-message{
    display: flex;
    flex-direction: column;
    width: 60%;
    justify-self: center;
    margin: 0 auto;
}

.submit-message input{
    height: 35px;
    border-radius: 8px;
    border: 1px solid #5f5f5f;
    outline: transparent;
    margin-bottom: 15px;
    padding-left:5px;
    font-family: 'Source Sans Pro', sans-serif;
}

.submit-message textarea{
    border-radius: 8px;
    border: 1px solid #5f5f5f;
    outline: transparent;
    margin-bottom: 15px;
    padding-left:5px;
    padding-top: 5px;
    font-family: 'Source Sans Pro', sans-serif;
    height: 150px;
    resize: none;
}

#submit-button{
    background-color: #ed1b24;
    border-radius: 4px;
    border: none;
    height: 45px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    transition: filter 0.2s;
}

#submit-button:hover{
    filter: brightness(110%);
}

.resp{
    text-align: center;
}