body {
    margin: 0;
    font-family: Arial;
    text-align: center;
}

.main-page {
  
    background-image: url('Kleine-Rote-Katze-Wiese-Blumen.jpg');
}

.overlay {
    padding: 50px;
}

button {
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    background: hotpink;
    border: none;
    cursor: pointer;
}

.game-page {
    background-image: url('3Cats.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: flex-end;
}

.boards {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.board {
    display: grid;
    grid-template-columns: repeat(12, 30px);
    gap: 3px;
}

.cell {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 5px;
    cursor: pointer;
}

.playerShip {
    background: gray;
}

.hit {
    background: red;
}

.miss {
    background: lightblue;
}