.top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('../img/footer.jpg');
    background-size: cover;
    background-position: center 75%;
    height: 350px;
    margin-bottom: 50px;
}
.top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000050;

}
.top h1 {
    position: relative;
    color: #fff;
    letter-spacing: .25rem;
    font-size: 40px;
    text-align: center;
}
form {
    width: 100%;
    margin-bottom: 50px;
}
form div {
    display: grid;
    grid-template-columns: 1fr 4fr;
    margin-bottom: 40px;
}
.error {
    grid-column: 2/3;
    color: #f00;
}
.radio {
    display: block;
}
label span {
    color: #f00;
}
label {
    padding-right: 20px;
}
.text-area {
    border: 1px solid #555;
    padding: 4px 16px;
}
.text-area:active {
    border: 1px solid #444;
}
.submit {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 4px 8px;
    font-size: 18px;
    width: 50%;
    min-width: 300px;
}
@media screen and (max-width:880px) {
    .top h1 {
        font-size: 30px;
    }
    label br {
        display: none;
    }
    form div, label, .text-area {
        width: 100%;
        display: block;
    }
    
}