* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik Doodle Shadow', sans-serif;
    overflow: hidden; 
    background-color: #222;
}

header {
    width: 100%;
    height: 100vh; 
    position: relative;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.575); 
    z-index: 1; 
}

.alias-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2; /* Coloca el formulario encima del overlay */
    color: white; /* Color del texto */
}

.alias-container h2 {
    font-size: 55px;
    margin-bottom: 10px;
}

.alias-container input[type="text"] {
    padding: 10px;
    font-size: 18px;
    width: 100%;
}

.alias-container button {
    padding: 8px 20px;
    font-size: 18px;
    background-color: #488791;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

.alias-container button:hover {
    background-color: #81b1c3;
}

#welcome-message {
    display: none; /* Oculta el mensaje de bienvenida inicialmente */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
}
#welcome-text {
    font-size: 55px;
    color: #ffffff; 
}


#previous-scores {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    color: white;
    font-size: 20px;
}