body{
    margin: 0px;
    background: url(../img/fondo2.jpg);
    background-size: cover;
    width: 100%;
    height: 100vh; /* viewper height escala a lo vertical */
    text-align: center;
    padding-top: 120px;
    

}

#contenedor h1{
    color: aliceblue;
    font-size: 70px;
    text-transform: uppercase; /* Pasa texto a Mayúsculas*/

}

#contenedor p{
    color: #d3e3f1ef;
    font-size: 20px;
    font-weight: 600; /* valores de 100 a 700 sin px*/
}

#contenedor{
    width: 80%;
    padding: 100px 120px;
    background: #ee2ee475;
    margin: 0 auto; /* Centra el contenedor*/
}

/* Estilos del botón en estado inactivo*/
#contenedor button{
    padding: 8px 20px;
    background: transparent;
    border: 2px solid #d6d6d6;
    color: beige;
    font-size: 30px;
    cursor: pointer;
    transition: .5s; /* Animación para pasar de un estado a otro. Se debe poner en el estado inactivo*/
    margin: 10px 30px;   
}

/* Estilos del botón en estado hover*/
#contenedor button:hover{
    background: black;
    padding: 8px 40px;
      
}