html{
    height: 100%;
    background: radial-gradient(circle, #fff, #ccc);
}

#container{
    background-image: url('/images/OI2P520.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 750px;
    width: 750px;
    margin: 10px auto;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 0px 0px #009DE4;
    -moz-box-shadow: 0px 4px 0px 0px #009DE4;
    -webkit-box-shadow: 0px 4px 0px 0px #009DE4;
    position: relative;
}

#score{
    background-color: rgb(48, 47, 47);
    color: #ffffff;
    padding: 11px;
    position: absolute;
    left: 700px;
    box-shadow: 0px 4px 0px 0px #9da853;
    -moz-box-shadow: 0px 4px 0px 0px #9da853;
    -webkit-box-shadow: 0px 4px 0px 0px #9da853;
}

#fruitsContainer{
    width: 650px;
    height: 400px;
    margin: 50px auto 10px auto;
    background-image: url('/images/bghd.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;  
    box-shadow: 0px 4px #ff9500;
    -moz-box-shadow: 0px 4px #ff9500;
    -webkit-box-shadow: 0px 4px #fcaf08;
    font-size: 100px;
    border-radius: 50px;
    text-align: center;
    color: black;
    line-height: 150px;
    position: relative;
    overflow: hidden;
}

#instruction{
    width: 450px;
    height: 50px;
    background-color: #FDB712;
    margin: 10px auto;
    text-align: center;
    line-height: 45px;
    border-radius: 30px;
    box-shadow: 0px 4px #8153a8;
    -moz-box-shadow: 0px 4px #8153a8;
    -webkit-box-shadow: 0px 4px #8153a8;
}

#choices{
    height: 100px;
    width: 450px;
    margin: 5px auto;
}

.box{
    width: 85px;
    height: 85px;
    background-color: white;
    float: left;
    margin-right: 36px;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0px 4px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 4px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 4px rgba(0,0,0,0.2);
    text-align: center;
    line-height: 80px;
    position: relative;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -mz-transition: all 0.2s;
    -ms-transition: all 0.2s;
}

.box:hover, #startreset:hover{
    background-color: #9c89f6;
    color: white;
    box-shadow: 0px 4px #6b54d3;
    -moz-box-shadow: 0px 4px #6b54d3;
    -webkit-box-shadow: 0px 4px #6b54d3;
}

.box:active, #startreset:active{
    box-shadow: 0px 0px #6b54d3;
    -moz-box-shadow: 0px 0px #6b54d3;
    -webkit-box-shadow: 0px 0px #6b54d3;
    top: 4px;
}

#box4{
    margin-right: 0px;
}

#startreset{
    width: 80px;
    padding: 10px;
    background-color: rgba(255,255,255,0.5);
    margin: 0 auto;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0px 4px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 4px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 4px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -mz-transition: all 0.2s;
    -ms-transition: all 0.2s;
}

#lifesLeft{
    width: 80px;
    padding: 10px;
    position: absolute;
    background-color: #F1FF92;
    border-radius: 3px;
    box-shadow: 0px 4px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 4px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 4px rgba(0,0,0,0.2);
/*    visibility: hidden;*/
    display: none;
}

#gameover{
    width: 500px;
    height: 200px;
    background-image: url('/images/popup.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 
    color: white;
    text-align: center;
    font-size: 250%;
    text-transform: uppercase;
    position: absolute;
    top: 170px;
    left: 145px;
    z-index: 2;
    display: none;
}

.life{
    width: 1em;
    height: 1em;
    margin: 0 5px;
}

.fruit{
    display: none;
    position: absolute;
}

#leaderboards{
    width: 280px;
/*    background-color: red;*/
    text-align: center;
}

th{
    padding-right: 20px;
    padding-left: 20px;
}

#highscores{
    font-size: 20px;
}