    /* Inicio Slider de Imagens  */
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Press+Start+2P&display=swap');
       
.playgame {
    display: flex;
    position: relative;
    }

.img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 700px;
    }
    
.slider {
    position: absolute;
    transition: opacity .2s;
    opacity: 0;
    border-radius: 10px;
    width: 450px;
    height: auto;
    }
    
.on {
    opacity: 1;
}
    
#buttom-prev, #buttom-next {
    width: 100px;
    height: auto;
    border: none;
    background-color: transparent;
    cursor: pointer;
    
}
    
#buttom-prev img, #buttom-next img {
    width: 100%;
    height: 100%;
    
}
    
#buttom-prev {
    transform: rotate(180deg);
}
    
.container-img {
    display: flex;
    width: 600px;
    height: 300px;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.container-img p {
    position: absolute;
    top: 135px;
    font-size: 28px;
    color: white;
    font-family: 'Press Start 2P', cursive;
}

.sobre-jogo {
    position: absolute;
    z-index: 1;
    top: 455px;
    left: 1075px;
}

.start {
    position: absolute;
    z-index:1;
    top:455px;
    left: 825px;
    margin: 0;
    padding: 0;
}

.start, .sobre-jogo {
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: background-color .4s;
    border-radius: 10px;
    background-color: #352728;
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: white;
}

.start:hover {
    background-color: rgb(13, 218, 6);
}

.sobre-jogo:hover {
    background-color: rgb(13, 218, 6);
}

.start:active {
    color: #0415ff;
}

.sobre-jogo:active {
    color: #0415ff;
}

.off {
    display: none;
}

    
        /* Fim Slider de Imagens */
    