.main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Heebo', sans-serif;
    margin: 25px 0;
}

.contenedor{
    padding: 1em;
    border-radius: 25px;
    width: 100%;
    max-width: 600px;   
}


.top{
    margin-top: -10px;
    margin-left: -10px;
    margin-right: -10px;
    display: grid;
    grid-template-columns: repeat(7,1fr);
}

.bottom{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    margin-bottom: -10px;
    margin-right: -10px;
    margin-left: -10px;
}

.rect{
    height: 50px;
}

.rojo{
    background-color: #da0404;
}

.naranja{
    background-color: #f68f04;
}

.amarillo{
    background-color: #fff117;
}

.verde{
    background-color: #6abd31;
}

.azul{
    background-color: #325bcf;
}

.morado{
    background-color: #6800af;
}

.violeta{
    background-color: #c100ab;
}

.respuestas-botones{
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    gap: 10px;
}

.pregunta{
    text-align: center;
    font-size: 1.25em;
}

.controles{
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn{
    font-size: 0.75em !important;
    border-radius: 50px !important;
    padding: 10px 15px !important;
    color: black !important;
    background-color: white !important;
    border: 2px solid black !important;
    outline: none !important;   
    transition: all .15s ease-in-out !important;  
    cursor: pointer !important;

    text-overflow: ellipsis !important;
    white-space: initial !important;
}

.logo{
    display: flex;
    justify-content: center;
}


.btn:hover{
    border-color: black;
    transform: scale(1.05);

}

#inicio, #siguiente, #reinicio, #resultados{
    font-size: 2rem !important;
    font-weight: bolder !important;
    padding: 15px !important;
    background-color: #325bcf !important;
    color: white !important;
}



#reinicio{
    background-color: #6800af;
    color: white;
}

#corazon{
    height: 124px;
}

.ocultar{
    display: none;
}

.correcto{
    background-color: rgba(144, 241, 80, 0.747) !important;
    color: black;
    border-color: #6abd31 !important;
}

.equivocado{
    background-color: #da0404bb !important;
    color: white !important;
    border-color: #da0404 !important;
}

.seleccionado{
    border-color: #325bcf;
    border-width: 10px;
}

.grow{
    transition: all .2s ease-in-out;
}

.grow:hover{
    transform: scale(1.1);
}

@media screen and (max-width:370px){
    .pregunta{
        font-size: 1em;
    }
    #inicio, #siguiente, #reinicio, #resultados{
        font-size: 1rem;
    }
}

a{
    color: white;
    font-weight: bold;
}

