@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Arimo');

body{
    background-image: url(imgcss/contacto.jpg);
    background-size: cover;
    background-attachment: fixed;
}
.encabezado{
    color: white;
    border-color: white;
}
.encabezado2{
    color: white;
}
.contactos{
    margin: 0;
    padding: 0;
}
.contenedorcontacto{
    width: 80%;
    margin-left: 10%;
    padding: 10px;
    border-radius: 20px;
}
.titulo{
    font-family: majaraja;
    background: rgba(0,0,0,0.8);
    border-radius: 20px;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    box-shadow: 5px 5px 5px #00a3d4;
    margin-bottom: 3%;
    margin-top: 3%;
}
.txtcontacto{
    border-left: solid 2px #00a3d4;
    margin: 0;
    color: #fff;
    font-family: arimo;
    margin-left: 3%;
    padding-left: 30px;
}
form{
    border-radius: 10px;
    border: solid 1px #00a3d4;
    font-family: majaraja;
    margin: auto;
    padding: 10px 20px;
    box-sizing: border-box;
    text-align: center;
    max-width: 480px;
    background: rgba(0,0,0,0.3);
}
form h2{
    font-family: majaraja;
    padding: 2px;
    font-weight: 100;
    font-size: 40px;
    text-align: center;
    border-bottom: solid 3px;
}
input, textarea{
    width: 100%;
    margin-bottom: 20px;
    padding: 7px;
    box-sizing: border-box;
    color: #00a3d4;
    border: solid 2px;
}
textarea{
    min-height: 100px;
    max-height: 200px;
    max-width: 100%;
}
#boton{
    border-radius: 50px;
    background: rgba(0,0,0,0.8);
    border: solid 2px;
    color: #00a3d4;
    width: 35%;
    text-align: center
}
#boton:hover{
    cursor: pointer;
}

