.container {
    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: #000000;
    color: #ffffff;
    border-bottom: 5px solid #ffd700;
}

.panel {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.square { 
    height: 150px;
    width: 150px;
    border: 1px solid #000000;
    background-image: url("../images/janelas.png");
    background-size: cover;
    background-position: center;
}

.enemy {
    background-image: url("../images/detona-ralph.png");
    background-size: cover;
    background-position: center;
    transition: transform 0.2s ease;
}

.enemy.hit {
    background-image: url("../images/detona-ralph-hit.png");
    background-size: cover;
    background-position: center;
    transition: transform 0.2s ease;
}

.enemy.miss {
    background-image: url("../images/broken-window.png");
    background-size: cover;
    background-position: center;
    transition: transform 0.2s ease;
}

.square.miss {
    background-image: url("../images/broken-window.png");
    background-size: cover;
    background-position: center;
    transition: transform 0.2s ease;
}

.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;
}

@media (max-width: 480px) {
    .menu {
        height: 150px;
    }
}

@media (max-width: 430px) {
    .square { 
        height: 140px;
        width: 140px;
    }
}

@media (max-width: 395px) {
    .square { 
        height: 125px;
        width: 125px;
    }
}