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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.pregunta {
    position:absolute;
    width: 100%;
    /* position: absolute; */
    top: 60%;
    left: 0;
    padding: 20px 0; /* Espaciado alrededor del título */
    text-align: center;
    /* background-color: rgba(0, 0, 0, 0.3); Fondo transparente pero con un toque */
    z-index: 1; /* Para que quede por encima del fondo */
}

.pregunta h1 {
    top: 70%;
    margin: 0;
    font-size: 2rem;
    color: rgb(255, 255, 255);
    text-shadow: 
        2px 2px 5px rgba(255, 255, 0, 1),   /* Sombra amarilla brillante */
        -2px -2px 5px rgba(255, 255, 0, 1),  /* Sombra en otra dirección */
        0 0 25px rgba(255, 255, 0, 1),      /* Resplandor alrededor */
        0 0 50px rgba(255, 255, 0, 1);      /* Resplandor más intenso */
}

.background {
    background-image: url('media/fondo_pag1.gif');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
}

/* .content {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
} */

.small-img {
    position: absolute;   /* Posiciona la imagen de manera absoluta */
    top: 10%;               /* 0 píxeles desde la parte superior */
    left: 50%;            /* Coloca la imagen en el centro horizontalmente */
    transform: translateX(-50%);  /* Ajusta para centrar perfectamente */
    width: 350px;         /* Ancho de la imagen (ajustable) */
}

.small-img1 {
    position: absolute;  /* Posiciona la imagen de manera absoluta */
    top: 0;              /* 0 píxeles desde la parte superior */
    left: 0;             /* 0 píxeles desde el borde izquierdo */
    width: 200px;        /* Ancho de la imagen (ajustable) */
}

.small-img3 {
    position: absolute;  /* Posiciona la imagen de manera absoluta */
    top: 0;              /* 0 píxeles desde la parte superior */
    right: 0;            /* 0 píxeles desde el borde derecho */
    width: 200px;        /* Ancho de la imagen (ajustable) */
}

.button1 {
    position: absolute;
    left: 45%;
    bottom: 10%;
    margin-top: 20px;
}
.button2 {
    position: absolute;
    right: 50%;
    bottom: 10%;
    margin-top: 20px;
}

button {
    position: absolute;
    bottom: 10%;
    padding: 10px 20px;
    font-size: 16px;
    margin: 5px;
    cursor: pointer;
    border: none;
    background-color: rgba(255, 0, 0, 0.6);
    color: rgb(0, 0, 0);
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: rgba(165, 207, 15, 0.8);
}
