body{
    background: #FFF5EE;
    background-size: 100vw 100vh;
    background-attachment: fixed;
    margin: 0;
   
}

form{
    width: 450px;
    margin: auto;
    background: rgba(0,0,0,0.6);
    padding: 10px 20px;
    box-sizing: border-box;
    margin-top: 70px;
    border-radius: 10px;
}

h2{
    color: #fff;
    text-align: center;
    margin: 0;
    font-size: 30px;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
  
    margin-bottom: 20px;
    padding: 7px;
    box-sizing: border-box;
    font-size: 17px;
    border: none;
}

textarea {
    min-height: 100px;
    max-height: 200px;
    max-width: 100%;
}

#button{
    background: #31384A;
    color: #fff;
    padding: 20px;
    border-radius: 40px;
}

#button:hover{
    cursor: pointer;
}

@media (max-width:480px){
    form{
        width: 100%;
    }
}

footer{
    margin-top: 20px;
}

footer .contenedor2{
    margin-top: 10px;
    background: #333;
    color: aliceblue;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
}

footer h3{
    font-size: 30px;
    margin-top: 20px;
    margin-left: 80px;
    margin-right: 80px;
}




