@media screen and (max-height: 640px) {
    .container.container-single{
        padding-top: 3px !important;
    }
}
#gamebox {
    width: 750px; 
    margin: 0px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.header {
    position: absolute;
    top: 30px;
    width: 750px;
    text-align: center;
}
.header .current{
    font-size: 30px;
    color: #fff;
}
.header .record{
    font-size: 16px;
    color: #fff;
}

#gamemain {
    /*width: 746px;
    height: 496px;*/
    width: 750px;
    height: 440px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: #161c1c;
    /*border: 2px solid #313131;*/
}

.apple {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: red;
}

.snake {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: lawngreen;
    border-radius: 3px;
    transition: transform 0s linear;
}

.snake_head {
    background-size: cover;
    border-radius: 50%;
    background-color: transparent;
}

.gameover {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    background-color: rgba(22, 28, 28, 0.95);
    top: 0;
}

.gameover p.msg {
    font-family: Arial;
    font-size: 24px;
    color: grey;
    margin: 0 auto;
    margin-top: 150px;
}
.gameover span {
    font-family: Arial;
    font-size: 40px;
    color: white;
    margin: 20px auto;
}

#restartgamebutton,
#continuegamebutton {
    display: block;
    margin: 16px auto;
    width: 120px;
    padding: 6px;
    background-color: #00BB00;
    font-family: Arial;
    font-size: 24px;
    color: red;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
}

#restartgamebutton:hover,
#continuegamebutton:hover {
    background-color: #9f8b77;
}

.pause {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    background-color: rgba(22, 28, 28, 0.6);
    z-index: 2;
}

.pause p {
    font-family: Arial;
    font-size: 24px;
    color: grey;
    margin: 0 auto;
    margin-top: 150px;
}

#tips {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-weight: bold;
}