body {
    background-color: black;
    font-family: monospace;
    color: aliceblue;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.barra {
    width: 75vh;
    height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.grid {
    width: 75vh;
    height: 75vh;
    border: solid white 2px;
    display: flex;
    flex-wrap: wrap;
}

.grid div {
    width: 5vh;
    height: 5vh;
}

.playAgain {
    background-color: aliceblue;
    border: none;
    border-radius: 5px;
    color: #0E1013;
    padding: 15px 32px;
    font-family: monospace;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.playAgain:hover{
    background-color: rgb(163, 174, 183);
}

.playAgain:active{
    background-color: aliceblue;
}

.alien {
    background-image: url(alien.png);
    background-size: cover;
}

.shooter {
    background-image: url(ship.png);
    background-size: cover;
}

.laser {
    background-image: url(laser.png);
    background-size: cover;
}

.boom {
    background-image: url(boom.png);
    background-size: cover;
}