* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

nav {
    background-color: #FFDF6E;
}

.text-k{
    color: #ff0092;
}

/*Inicio*/
.inicio {
    height: 100vh;
}

.inicio-titulo {
    height: 80vh;
    background-image: url(../img/hill.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cont-h1 {
    background-color: #ba01ff;
    border-radius: 54% 46% 85% 15% / 64% 66% 34% 36%;
    border: 3px solid white;
    max-width: auto;
}

h1 {
    font-size: 7rem;
    color: #ff0092;
    font-family: "Squada One", sans-serif;
    text-shadow: 6px 6px 3px #FFDF6E;
    line-height: 0.9;
}

.inicio img{
    filter: drop-shadow(8px 8px 5px #474747);
}

.cont-img {
    width: 100%;
    height: 240px;
    position: relative;
    background-color: #ff0092;
}

.cont-img img {
    position: absolute;
    width: 100%;
    max-width: 300px;
    height: auto;
    border: 2px solid white;
    animation: girar 2s; 
    transition: transform 0.5s ease;
    display: block;
}

.cont-img img:hover{
    transform: rotate(-360deg);
}

@keyframes girar {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

/* Ingreso */
.info {
    background: #7DDFFF;
    background: linear-gradient(0deg, rgba(125, 223, 255, 1) 0%, rgba(201, 241, 241, 1) 100%);
}

.info-box {
    border: 20px solid #ebebeb;
    border-style: double;
    border-radius: 20px;
    background-color: #FFDF6E;
    margin-top: 8rem;
    margin-bottom: 4rem;
}

.btn {
    background-color: #ba01ff;
}
.btn:hover{
    background-color: #ff0092;
    color: #000000;
}

/*vistas preg*/
.test{
    background-color: #ba01ff;
}
/* Mensaje Saludo*/
.mensaje-nombre p {
    font-size: 30px;
    font-weight: bold;
}
.nombre{
    color: #b6ff00;
}
/*preguntas*/
.contenido-pregunta img{
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 23px;
    border-radius: 5%;
    display: block;
}
/*radio Buttons*/
.radio-contenedor label {
    font-size: 23px;
}
.custom-radio {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ebebeb;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
}
/* Radio button cuando está marcado */
.custom-radio:checked {
    background-color: #ff0092;
}
/*Botón Enviar respuestas*/
.btn-test .btn {
    background-color: #b6ff00
}
.btn-test .btn:hover{
    background-color: #ff0092;
}
#volverJugarBtn {
    display: none;
} 
#msjPuntajeCuentos, #msjPuntajeAnimales {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
.corona {
    color: gold;  
}
.resp-correcta:checked{
    background-color: #b6ff00;
}
.resp-incorrecta:checked{
    background-color:crimson;
}
.respSmall{
    font-size: 18px;
    color: aliceblue;
}

/* responsive */
@media (max-width: 992px) {
    .inicio {
        height: auto;
    }    
    h1 {
        font-size: 5.2rem;
    }
    .info-box {
        margin-top: 30px;
    }
    .info-box img {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .cont-img {
        display: none !important;
    }
}


