/* General reset and layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #18bc9c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: bold;
}

#gameContainer {
    display: grid;
    grid-template-columns: repeat(20, 20px); /* Adjust grid size */
    grid-template-rows: repeat(20, 20px);
    gap: 1px;
    margin: 20px 0;
    background-color: #2c3e50;
    border-radius: 10px;
}

.snake {
    background-color: #27ae60;
}

.food {
    background-color: #e74c3c;
}

/* Instructions below the game */
.instructions {
    font-size: 1.2rem;
    color: whitesmoke;
    margin-top: 20px;
}
