#snakeGame {
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin:auto;
}

.startScreen{
    position: absolute;
    background-color: #ee5253;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 1;
    text-align: center;
    border: 1px solid #ff6b6b;
    padding: 15px;
    margin: auto;
    width: 50%;
    cursor: pointer;
    letter-spacing: 5;
    font-size: 20px;
    word-spacing: 3;
    line-height: 30px;
    text-transform: uppercase;
    box-shadow: 0 5px 5px #777;
}

.level button {
    padding: 7px;
    font-size: 14px;
    background: white;
    border: 1px solid orangered;
    border-radius: 10px;
    width: 80px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 5px 5px #777777a6;
}

.hide {
    display: none;
}