body{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5vh;
    gap: 3.33vw;
    background-color: #F2E8C6;
    font-family: Arial, Helvetica, sans-serif;

    & #cajabotones{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 50px;
        height: 90vh;
        width: 30vw;

        & >div:nth-child(1){
            display: flex;
            gap: 20px;
            width: 25vw;
            
            & >div:nth-child(1){
                color: #4394ab;
                font-weight: bold;
            }

            & >div:nth-child(2){
                color: fuchsia;
                font-weight: bold;
            }
        }

        & >button{
            border: none;
            cursor: pointer;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            transition: 0.5s;
            height: 30vh;
            width: 15vw;
            border-radius: 15px;
        }

        & #tresenraya{
            background-color: #feb237;
            background-image: url(/ejercicios/estilos_eventos_extra/img/tres-en-raya.png);
        }

        & #juegoparejas{
            background-color: transparent;
            background-size: cover;
            background-image: url(/ejercicios/estilos_eventos_extra/img/memory-game.png);
        }
    }
}