body{
    
    
    background-attachment: fixed;
    background-repeat: none;
    margin: 0;
    font-family: 'Lato', sans-serif;

}

form{
    
    width: 450px;
    margin: auto;
    background: rgba(0,0,0,.7);
    border-radius: 10px 0px;
    padding: 10px 20px;
    box-sizing: border-box;
}

h2{
    color: #fff;
    text-align: center;
    margin: 0;
    font-size: 30px;
    margin-bottom: 20px;
    padding: 10px;
    
}

body h2 span{
    margin-right: 10px;
}

input, textarea{
    
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 15px;
    border: none;

}

textarea{
    min-height: 100px;
    max-height: 200px;
    min-width: 100%;
    max-width: 100%;
}

#Botoncontacto{
    
    background: rgba(0,0,0,.9);
    color: #fff;
    box-shadow: 0px 2px 2px #777;
   
}

#Botoncontacto:hover {
    
    cursor: pointer;
}

@media (max-width:480px){
    form{
        width: 100%;
         
    }
}



