body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background-color: rgb(0, 39, 35);
    color: white;
}

#title {
    font-weight: bold;
    font-size: 70px;
    color: #00f5d4;
    text-shadow: 0 0 2px #00f5d4, 0 0 4px #00f5d4, 0 0 8px #00f5d4;
    margin-bottom: 100px;
}

#gameContainer {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 0px;
    border: solid 1px black;
    min-height: 500px;
    min-width: 500px;
    box-shadow: 
        0 0 15px rgba(7, 216, 189, 0.7),
        0 0 30px rgba(7, 216, 189, 0.7),
        0 0 60px rgba(7, 216, 189, 0.7);
}

.cell {
    width: 100%;
    height: 100%;
    background-color: rgb(3, 124, 114);
    border: solid black;
}

.bodyCell {
    background-color: #00f5d4;
    border: solid 1px black;
    box-shadow: 0 0 8px #00f5d4, 0 0 16px #00f5d4, 0 0 32px #00f5d4;
}

.food {
    background-color: rgb(0, 255, 174);
    border: solid 2px black;
    box-shadow: 0 0 8px rgb(0, 255, 174), 0 0 16px rgb(0, 255, 174), 0 0 32px rgb(0, 255, 174);
}

#menu {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(20, 20, 20, 0.85);
    color: white;
    height: 300px;
    width: 300px;
    border-radius: 50px;
    box-shadow: 0 0 15px #06b69e, 0 0 25px #0cab95;
    margin-top: 100px;
}

#controls {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    font-weight: bold;
    font-size: 25px;
}

#controls div {
    padding: 5px;
    margin: 10px;
}

#controls span {
    border: solid white;
    padding: 10px;
}

#prompt {
    padding: 10px;
    font-size: 20px;
}

#score {
    padding: 10px;
    font-size: 20px;
}