body {
    background: linear-gradient(#69606D, #bb7c4c);
    width: 100%;
}

.align-center {
    display: flex;
    align-items: center;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.display-block {
    display: block;
    width: 360px;
    height: 360px;
    position: relative;
    margin-top: 3px;
}

#start-screen {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 1rem 0;
}

#game-logo-img {
    width: 10vh;
    height: auto;
    margin-right: 2vh;
}

#start-screen h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 4rem;
    margin-right: 2vh;
}

#start-screen p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
}

#container {
    display: flex;
    justify-content: center;
}

#game-screen {
    background-color: #151415;
    display: grid;
    grid-template-rows: repeat(30, 1fr);
    grid-template-columns: repeat(30, 1fr);
    border: 6px solid rgb(93, 93, 93);
    border-radius: 4px;
    justify-content: space-around;
    align-items: space-around;
}

#game-over-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: black;
    padding: 20px 20.5px 21.4px 20.5px;
    top: 34.9%;
    left: 48.9%;
    transform: translate(-50%, 50%);
    position: absolute;
    visibility: hidden;
}

#restart-button {
    display: flex;
    align-items: center;
    width: 110px;
}

#score-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
}

#restart {
    font-size: 15px;
    padding: 10px 20px;
    background: #69606D;
    border: none;
    color: #2f2c31;
    border-radius: 20px;
    font-weight: 800;
    transform: rotate(-90deg);
    cursor: pointer;
    transition: all 200ms;
}

  #restart:hover {
    background: #777980;
    background: #bb7c4c;
    transition: all 200ms 
}

#score {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: 40px;
    transform: rotate(-90deg);
    width: auto;
}

#arrow-keys-img {
    width: 10vh;
    height: auto;
    margin: 3vh 0 3vh 0;
}

.arrow-keys {
    width: 100%;
    display: flex;
    justify-content: center;
}

#points {
    font-weight: 700;
    margin: 0 0 0 5vh;
}

.grid-row {
    margin: -4px;
}

.grid-cell {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: rgb(3, 3, 3);
    border: 1px solid rgb(70, 70, 70);
}

.snake {
    background-color: rgb(199, 199, 199);
}

.food {
    background-color: #bb7c4c;
}

  