<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Document */

*, *:before, *:after
{
	box-sizing:border-box; /*con esta propiedad hacemos que el padding y el border no aumenten el tamaÃ±o de la caja en todo el documento*/
}
/* new clearfix */
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
* html .clearfix { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700');

header{
    background-color: #075da4;
    width: 100%;
    max-width: 650px;
    text-align: center;
    padding: 20px 0 20px 0;
    margin: auto;
}

main{
    background-color: #efefef;
    padding: 40px 20px;
    max-width: 650px;
    margin: auto;
}
.control-label{
    display: block;
    color: #818181;
    font-family: 'Raleway', sans-serif;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 20px;
}

#mensaje{
    float: left;
    display: inline-block;
    width: 100%;  
    padding-top: 14px;
    padding-left: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: .9em;
}

#email{
    float: left;
    display: inline-block;
    width: 100%;  
    padding-top: 14px;
    padding-left: 10px;
    padding-bottom: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: .9em;
}

.error{
	background-color:#FFDDDD;
}
.enviar{
    background-color: #988642;
    border: 0;
    color: aliceblue;
    width: 100%;
    padding: 20px 0;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.enviar:hover{
    background-color: #a08c3e; 
}
:focus{
    outline: none;
}

.footer{
    height: 100vh;
    background-color: #262521;
    text-align: center;
    padding: 30px;
    max-width: 650px;
    margin: auto;
}

.copyright{
   font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: .9em;
    color: #696969;
}

@media screen and (min-width:500px) {
    body{
        padding: 50px;
    }
    .footer{
        height: 200px;
        padding: 50px;
    }
}

</pre></body></html>