body{
    background: rgb(8,28,34);
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Open Sans', sans-serif;
}
img{
    width: 50%;
}
.container{
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
h1{
    color: rgb(233, 238, 245);
    font-size: 20px;
    padding: 20px;
}
button{
    padding: 13px 30px;
    border-radius: 15px;
    border: none;
    background: rgb(5, 129, 245);
    color: white;
}
.boton .btn {
    cursor: pointer; /* Asegura que el cursor sea una mano */
    padding: 10px 20px; /* Ajusta según tu diseño */
    background-color: #007BFF; /* Color del botón */
    color: white; /* Color del texto */
    border: none; /* Sin borde */
    border-radius: 5px; /* Bordes redondeados */
    text-align: center; /* Centra el texto */
    font-size: 16px; /* Tamaño del texto */
}
.boton .btn:hover {
    background-color: #0056b3; /* Color del botón al pasar el cursor */
}

@media screen and (max-width:630px){
    h1{        
        font-size: 16px;        
    }
}