#snake{
    height: 750px;
    width: 550px;

    position: absolute;

    overflow: auto;
}
#snakeContainer{
    text-align: center;
    margin-top: 55px;
}
#gameBoard{
    border: 2px inset #9a9a9a;
}
#gameInfo{
    width: 100%;
    height: fit-content;
}
#scoreText{
    font-family: sans-serif;
    font-size: 100px;
}
#resetButton{
    position: absolute;

    color:var(--dunkel);
    background-color: var(--hell);
    border: none;
  
    height: 50px;
    width: 225px;
    left: 19px;
    top: 0px;
    padding: 0;

    font-family: "defaultFont", monospace;
    font-size: 20px;
    font-weight: bold;

    cursor: pointer;
}
#resetButton:hover{
    border: 2px inset #9a9a9a;
    background-color: #9a9a9a;
}
#startButton{
    font-family: sans-serif;
    font-size: 22px;
    width: 100px;
    height: 50px;
    bottom: 25px;
    border-width: 2px;
    border-color: #9a9a9a;
    border-style: outset;
    border-radius: 0px;
    cursor: pointer;
}
#startButton:hover{
    border: 2px inset #9a9a9a;
    background-color: #9a9a9a;
}