section{
    padding-top: 100px;
    padding: 100px 50px;
    box-sizing: border-box;
    width: 100vw;
    height: 100vh;
}

form{
    display: flex;
    flex-wrap: wrap;
    width: 75%;
    justify-content: space-between;
}
label{
    font-weight: 600;
    margin-bottom: 10px;
}
input,textarea{
    border: 1px solid #000;
    padding: 10px;
}
input[type="text"], input[type="email"]{
    width: 100%;
    margin: 10px 0;
    min-width: 200px;
}
input::placeholder, textarea::placeholder{
    color: rgba(0,0,0,0.3);
}
textarea{
    margin: 10px 0;
    min-width: 200px;

}
#name{
    width: 40%;
}
#email{
    width: 40%;
}
#message{
    width: 100%;
}

input[type="submit"]{
    border: none;
    border-radius: 10px;
    width: 75px;
    margin-top: 5px;
    background-color: #e7e7e7;
    box-shadow: 1px 2px 2px rgba(0,0,0,0.5);
}

@media screen and (max-width: 800px){
    form{
        display: block;
    }
}

@media screen and (max-width: 350px){
    section{
        padding-left: 10px;
        padding-right: 10px;
    }
}
