.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* body {
    background-color: black;
} */


.btn {
    margin-top: 2%;
    padding: 10px;
    font-weight: bold;

    background-color: #6BE1E3;
    color: white;
    padding: 10px 40px;
    /* Ajustar el tamaño del botón */
    border-radius: 5px;
    /* Añadir bordes redondeados */
    border: none;
    /* Quitar el borde */
    transition: background-color 0.3s;
    /* Agregar una transición suave */

}

.btn:hover {
    background-color: rgba(22, 126, 128, 0.5);
    /* Hacer el color del botón un poco opaco al pasar el mouse */
    cursor: pointer;

    color: white;
}