body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    /*background: linear-gradient(82deg, #4b4b4b 0%, #313131 60%, #AAAAAA 70%, #313131 80%, #585858 100%);*/
    background-color: #585858;
}

#juego-container {
    box-sizing: border-box;
    border-radius: 13px;
    padding: 0;
    margin: 0;
}

#juego-innercontainer {
    display: block;
    margin: auto;
    object-fit: cover;
    padding: 0;
    border-radius: 9px;
    background: linear-gradient(
        92.06deg,
        #353535 1.61%,
        #353535 8.49%,
        #4d4d4d 21.57%,
        #353535 33.1%,
        #353535 98.15%
    );
    transform-origin: top center;
    width: 360px;
    height: 100%; /* puedes cambiarlo según tu necesidad */
    min-height: 770px;
}

#miImagen {
    width: 100px;
    height: 100px;
    background-image: url(https://picsum.photos/100);
    position: absolute;
    left: 150px;
    top: 150px;
}

#juego-container h3 {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #ffd260;
    padding: 15px 29px 0px 29px;
    margin-bottom: 0;
}

#juego-container h5 {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 19px;
    text-align: center;

    color: #ffd260;

    padding: 0px 29px 0 29px;
    margin-top: 0;
    margin-bottom: 18px;
}

#juego-container .puntaje {
    font-family: "Anton";
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 26px;
    background-image: url(img/puntaje_back.png);
    background-size: cover;
    letter-spacing: 0.035em;

    text-align: center;
    padding: 13px;
    margin: 0 auto 20px;
    color: #363636;
    width: 110px;
}

@keyframes vibrar {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(2px) rotate(-2deg);
    }
    50% {
        transform: translateX(-2px) rotate(2deg);
    }
    75% {
        transform: translateX(2px) rotate(-2deg);
    }
    100% {
        transform: translateX(0);
    }
}

.vibrar {
    animation: vibrar 0.5s infinite;
}

#juego-container h4 {
    font-family: "Anton";
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    background-image: url(img/title_back.png);
    background-size: cover;
    letter-spacing: 0.035em;

    text-align: center;
    padding: 15px;
    margin-bottom: 10px;
    color: #363636;
}

/* Estilos para la pregunta */
.pregunta {
    margin-bottom: 20px;
}

/* Estilos para la imagen de la pregunta */
.centrar-horizontalemente {
    text-align: center;
}

.centrar-div-horizontalemente {
    display: flex;
    justify-content: center;
    text-align: center;
}

.contenedor-imagen {
    display: inline-block;
    border-radius: 23px;
    background: linear-gradient(
        120.24deg,
        #000000 15.97%,
        #313131 50.97%,
        #585858 79.37%
    );
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: transparent;
    margin-bottom: 31px;
}

.imagen-pregunta {
    display: block;
    margin: 0 auto;
    object-fit: cover;
    padding: 4px;
    border-radius: 23px;
    max-width: 330px;
}

/* Estilos para las respuestas */
.respuesta {
    border-radius: 5px;
    cursor: pointer;
    font-size: 17px;
    margin: 0 20px 10px 20px;
    padding: 20px;
    transition: all 0.2s ease-in-out;
    background-image: url(img/btn_question.png);
    background-size: cover;
    color: white;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

/* Estilos para las respuestas al pasar el mouse */
.respuesta:hover {
    background-image: url(img/btn_success.png);
    background-color: rgba(0, 0, 0, 0);
    background-size: cover;
}

/* Estilos para las respuestas seleccionadas */
.respuesta.seleccionada {
    /*background-image: url(img/btn_success.png);*/
    background-image: none;
    background-color: rgba(0, 0, 0, 0);
    background-size: cover;
}

.respuesta.correcta {
    background-image: url(img/btn_success.png);
    color: white;
}

.respuesta.incorrecta {
    background-image: url(img/btn_fail.png);
    color: white;
}

.puntos {
    font-size: 30px;
    font-weight: 600;
    color: white;
    margin-top: 10px;
    font-family: "Inter";
    line-height: 36.31px;
    text-align: center;
    margin-top: 24px;
}

/* Estilos para el botón Saber más */
.saber-mas,
.jugar-de-nuevo {
    background: #eeb443;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    margin: 25px 94px 0 94px;
    text-align: center;
    /*padding: 11px;*/
    font-family: "Inter";
    font-size: 14px;
    font-weight: 600;
}

.saber-mas a,
.jugar-de-nuevo a {
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 11px;
    width: 130px;
}

/* Estilos para el botón Verificar */
button {
    background-color: #4caf50;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 18px;
    margin-top: 10px;
    padding: 10px;
    transition: all 0.2s ease-in-out;
}

/* Estilos para el botón Verificar al pasar el mouse */
button:hover {
    background-color: #3e8e41;
}

@media screen and (min-width: 360px) {
    #juego-innercontainer {
        transform: scale(1);
    }
}

@media screen and (min-width: 720px) {
    #juego-innercontainer {
        transform: scale(2);
    }
}
@media screen and (min-width: 1080px) {
    #juego-innercontainer {
        transform: scale(3);
    }
}
