.container{
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: url("../imagens/wall.png");
}

.menu{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 90px;
    width: 100%;
    background-color: #000;
    color: #fff;
    border-bottom: 5px solid gold;
}

.panel{
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    align-self: center;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

.square{
    height: 150px;
    width: 150px;
    background-color: rgba(21, 21, 21, 0.571);
    border: 1px solid black;
}

.enemy{
    background: url("../imagens/ralph.png");
    background-size: cover;
}

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

.menu-time h2:nth-child(2),
.menu-score h2:nth-child(2){
    margin-top: 1rem;
}