
/*Spezifisches:*/

#snake{
    height: 550px;
    width: 550px;
    position: relative;
    overflow: auto;
}
#snakeContainer{
    text-align: center;
}
#gameBoard{
    border: 2px solid var(--dunkel);
}
#gameInfo{
    display: none;
    width: 100%;
    height: fit-content;
}
#scoreText{
    font-family: "defaultFont", monospace;
    font-size: 56px;
}
#resetButton{
    position: relative;
    color:var(--hell);
    background-color: var(--dunkel);
    border: none;
    height: 50px;
    width: 225px;
    padding: 0;
    font-family: "defaultFont", monospace;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}
#resetButton:hover{
    color: var(--dunkelFix);
    background-color: var(--akzent);
}