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

.menu{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 90px;
    width: 100%;
    background-color: black;
    color: white;
    border-bottom: 5px solid gold;
}
.menu h2{
    margin-top: 5px;
    text-align: center;
}
.panel{
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.square{
    height: 150px;
    width: 150px;
    border: 1px solid black;
    background-color: rgb(24, 213, 150);
}

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

#img{
    height: 60px;
}
.menu-lives{
    display: flex;
    align-items: center;
    justify-content: center;
}
