.snake-game-container {
    text-align: center;
    margin: 10px auto 30px auto;
    width: max-content;
}

.snake-game-canvas {
    display: block;
    border: 2px solid #333;
    background: #000;
}

.snake-score {
    font-family: monospace;
    font-size: 16px;
    color: #333;
    margin-bottom: 6px;
}

.snake-instructions {
    font-family: monospace;
    font-size: 13px;
    color: #333;
    margin-top: 6px;
}

.snake-canvas-wrapper {
    position: relative;
    display: inline-block;
}

.start-snake-game {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease-in-out;
}

.start-snake-game:hover {
    background-color: #45a049;
}
