* {
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(253, 126, 22);
    color: rgb(53, 53, 53);
}

body {
    width: 100%;
}

h1 {
    text-align: center;
    font-size: 15vw;
}

section {
    margin-left: 5%;
    margin-right: 5%;
}

#temas {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

.temas,
#juego,
#pregunta,
#respuesta,
#explicacion,
#puntos {
    font-size: 40px;
    flex-grow: 1;
    border: solid;
    border-width: 4px;
    border-color:rgb(53, 53, 53);
    margin: 20px;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    background-color: rgb(255, 155, 56);
}

#juego {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-content: flex-start;
    align-items: stretch;
    background-color: rgb(187, 185, 185);
}

#pregunta{
    font-size: 30px;
}

#respuesta{
    border-radius: 0;    
    min-width: 20%;
    font-size: 30px;
    background-color: whitesmoke;
}

#explicacion{
    width: 100%;
    font-size: 30px;
}

#puntos{
    flex-grow: 0;
}

@media screen and (min-width: 640px) and (max-width: 1280px) {

    h1{
        font-size: 20vw;
    }
}

@media screen and (max-width: 640px){

    h1{
        font-size: 30vw;
    }
}