body {
    font-family: 'Press Start 2P', cursive;
    background: linear-gradient(to right, #4a90e2, #50e3c2);
    color: rgb(254, 255, 253);
    text-align: center;
    overflow: hidden;
    animation: fadeIn 1s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #caf312;
}

#score, #timer {
    font-size: 1.5rem;
    margin: 10px 0;
}

.option-button {
    align-items: start;
    margin: 10px;
    padding: 10px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #ffffff;
    color: #000000;
    transition: background-color 0.3s, color 0.3s;
}

.option-button:hover {
    background-color: #4a90e2;
    color: white;
}

.correct {
    background-color: green;
    color: white;
}

.wrong {
    background-color: red;
    color: white;
}

.boton{
    background-color: #000000;
    justify-self:left;
    padding: 13px 30px;
    border-radius: 32px;
	margin-bottom: 20px;
    margin-right: auto;
}
.boton a{
	text-decoration: none;
	color: #fff;
}
.boton:hover{
	background: #2c0003;
}

#next-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    background-color: #50e3c2;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

#next-button:hover {
    background-color: #4abf9a;
}

.hidden {
    display: none;
}

#game-over {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
#start-button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.5rem;
    border: none;
    border-radius: 10px;
    background-color: #f39c12;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

#start-button:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
}
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Asegura que el video esté detrás del contenido */
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video cubra todo el área */
}

.content {
    position: relative;
    z-index: 1; /* Asegura que el contenido esté delante del video */
    color: white;
    text-align: center;
    padding: 20px;
}


h1 {
    font-size: 3rem; /* Tamaño más grande para el título */
}

#start-button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.8rem; /* Tamaño más grande para el botón */
    border: none;
    border-radius: 10px;
    background-color: #f39c12;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

#score, #timer {
    font-size: 2rem; /* Tamaño más grande para puntuación y temporizador */
}

#question-container {
    color: #4a90e2;
    font-size: 1.5rem; /* Tamaño para las preguntas */
}

#options-container{
    display: grid;
}

@media screen and (max-width: 900px){
    h1 {
        font-size: 50px;
        margin-bottom: 20px;
        color: #caf312;
    }
    
    .container {
        margin-top: 125px;
        padding: 20px;
        border-radius: 10px;
    }

    #score, #timer {
        font-size: 1.5rem;
        margin: 10px 0;
    }
    
    #question-container {
        font-size: 20px; /* Tamaño para las preguntas */
    }

    #game-over {
        margin-top: 20px;
        font-size: 20px;
        color: #fff;
    }

    .option-button {
        margin: 10px;
        padding: 10px;
        font-size: 1.2rem;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
    }
}