main {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.menu{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 5.625rem;
    width: 100%;
    background-color:#000000 ;
    color: #ffffff;
    border-bottom:3px solid #ffd700 ;
    position: fixed;
}

.your-score, .time{
    color: red;
}

.panel{
    margin-top: 5rem;
    background-image: url(../img/wall.png);
    background-repeat: repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    flex-direction: column;
}

.panel-row, .painel-row-last{
    display: flex;
    align-items: center;
    justify-content: center;
}

.square {
    background-image: url(../img/janela.png);
    background-size: cover;
    height: 10.25rem;
    border: 1px solid #000;
    width: 10.25rem;
    border: 1px solid #000;
    
}

.enemy {
    background-image: url(../img/ralph.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: rgb(255, 255, 255);
    
}
.enemy:hover{
    opacity: .9;
    cursor: pointer;
}

.menu-lives{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.second {
    margin-top: .8rem;
    text-align: center;
}

.div-button{
    display: flex;
    align-items: center;
    justify-content: center;
}

.button, .resetar {
    padding: 1rem;
    margin: 1rem 0 ;
    background-color:#00ff00 ;
    width: 20vw;
    border-radius: 10px;
    font-size: 1.2rem;
    border: none;
}
.resetar {
    background-color:#ff0000 ;
}

.button:hover, .resetar:hover{
    opacity: .7;
    cursor: pointer;
    transition: 1s;
}

.botoes{
    margin-top: 2rem;;
}

.player {
    height: 3rem;
}


@media screen and (max-width:1212px) {
    .resetar, .button{
        width: 30vw;
    }
}

@media screen and (max-width:735px) {
    .painel-row-last{
        display: none;
    }
    .delete{
        display: none;
    }
    .resetar, .button{
        width: 50vw;
    }
    .time, .your-score, .second{
        font-size: 1.2rem;
    } 
    .player{
        height: 2rem;
    }
}

@media screen and (max-width:540px){
    .painel-row-last{
        display: none;
    }
    .delete{
        display: none;
    }
    .resetar, .button{
        width: 50vw;
    }
    .square{
        width: 8rem;
        height: 8rem;
    }
    .time, .your-score, .second{
        font-size: 1rem;
    } 
    .player{
        height: 2rem;
    }

}

@media screen and (max-width:398px){
    .painel-row-last{
        display: none;
    }
    .delete{
        display: none;
    }
    .resetar, .button{
        width: 50vw;
    }
    .square{
        width: 6.3rem;
        height: 6.3rem;
    }
    .time, .your-score, .second{
        font-size: .9rem;
    } 
    .player{
        height: 1.8rem;
    }

}
