body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#titulo {
    color: blue;
    font-size: 4vw;
    border: solid 5px blue;
    border-radius: 10px;
    padding: 25px;
    margin: 0px;
}

#subtitulo {
    color: red;
    margin: 0px;
    font-size: 2vw;
}

#juego {
    border: solid 5px red;
    display: flex;
    border-radius: 10px;
    padding: 10px;
}

#premios1 {
    margin: 100px 0px 0px 20px;
}

#premios2 {
    margin: 100px 20px 0px 0px;
}

#arriba {
    display: flex;

    justify-content: center;
}

#cuadro-avances {
    width: 120px;
    height: 0px;
}

#numero-avance {
    position: relative;
    width: 100px;
    height: 60px;
    top: -81;
    left: 16;
    text-align: center;
    border: 0px;
    color: blue;
    font-size: 50px;
    font-weight: bold;
    margin: 0px;
}

#logo {
    margin: 20px;
}

#cuadro-apuestas {
    width: 120px;
    height: 0px;
}

#numero-apuesta {
    position: relative;
    width: 100px;
    height: 60px;
    top: -81;
    left: 16;
    text-align: center;
    border: 0px;
    color: blue;
    font-size: 50px;
    font-weight: bold;
    margin: 0px;
}

#creditos {
    height: 70px;
}

#numero-creditos {
    position: relative;
    width: 120px;
    height: 40px;
    top: -54;
    left: 289;
    text-align: center;
    border: 0px;
    color: blue;
    font-size: 25px;
    font-weight: bold;
    margin: 0px;
}

#slots {
    display: flex;
    gap: 20px;
    justify-content: center;
}

#slot1,
#slot2,
#slot3 {
    padding: 10px;
    border: solid 1px;
    border-radius: 10px;
}

#avance {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#opciones {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#avance1,
#avance2,
#avance3,
#apuesta,
#juega {
    font-size: 20px;
    padding: 10px;
    width: 220px;
    border: solid 1px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

#chiquito {
    position: relative;
    top: -500;
    display: none;
}

@media (max-width: 1000px) {
    #juego {
        flex-direction: column;
        align-items: center;
    }

    #premios1 {
        display: none;
    }

    #premios2 {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    #premios {
        width: 100%;
        align-items: center;
        justify-content: center;
    }
}