@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Press Start 2P", serif;
    color: white;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: black;
}

#start-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    z-index: 5;
}

#start-modal p {
    font-size: 2rem;
}

#start-modal.hidden {
    display: none;
}

#title {
    font-size: 5rem;
}

#bounding-box {
    height: 600px;
    width: 600px;
    background-color: lightgreen;
    display: grid;
    grid-template-rows: repeat(30, 20px);
    grid-template-columns: repeat(30, 20px);
}

#snake-head {
    background-color: red;
    grid-row: 15 / 16;
    grid-column: 15 / 16;
    z-index: 2;
}

.segment {
    background-color: blue;
}

.food {
    background-color: yellow;
}

.segment, .food {
    height: 20px;
    width: 20px;
}

#scoreboard {
    text-align: center;
    height: 600px;
    line-height: 2;
}

#high-score-title {
    font-size: 0.75rem;
}