/* Estilos generales */
body {
    text-align: center;
    background-color: blue;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

/* Estilo para el título de CharlieFest */
#charliefest-title {
    font-size: 60px;
    font-weight: bold;
    transform: scaleY(5);
    display: inline-block;
    margin-bottom: 150px;
}

/* Estilo para el título de la fecha */
#date-title {
    font-size: 60px;
    font-weight: bold;
    transform: scaleY(3);
    display: inline-block;
    margin-bottom: 70px;
    margin-top: 1em;
    line-height: 1.1;
}

.fecha-text, .rolon-text {
    font-size: 60px;
    font-weight: bold;
    transform: scaleY(2);
    display: inline-block;
    margin-bottom: 10px;
    line-height: 0.8;
}

#tematica {
    font-size: 20px;
    font-weight: bold;
    transform: scaleY(4);
    display: inline-block;
    margin-top: 50px;
    line-height: 0.1;

}

/* Inputs */
input {
    font-family: Verdana, sans-serif;
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 250px;
    border: none;
    font-size: 16px;
    text-align: center;
}

#username {
    background-color: #f0f0f0;
    color: black;
}

#password {
    background-color: #dcdcdc;
    color: black;
}

/* Estilos para los botones */
button {
    display: block;
    margin: 20px auto;
    padding: 12px 20px;
    font-size: 18px;
    background-color: #dcdcdc;
    color: black;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: black;
    transform: scale(1.05);
    color: white;
}

button:active {
    background-color: #3d3d3d;
    transform: scale(1);
}

/* Estilos para el botón de confirmación */
#confirm-button {
    margin-top: 10px;
}

/* Estilos para el mensaje de confirmación */
#confirmation-message {
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin-top: 50px;
    transform: scaleY(5);
    
}
/* Estilo para el texto que rota */
.rotating-text {
    font-size: 60px;
    font-weight: bold;
    transform: scaleY(2);
    margin-top: 10px;
    line-height: 1.1;
    opacity: 1;
}