html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: sans-serif;
}

#container {
    height: 90%;
    width: 90%;
    margin-left: 5%;
    position: relative;
    border: 1px solid rgb(255, 255, 255);
    overflow: hidden;
    background-color: #caf1f8;
}

#score_help {
    text-align: center;
    font-size: 25px;
    background-color: #ddffb7;
}

#branch {
    position: absolute;
    height: 2%;
    width: 100%;
    background-color: #c58b6a;
    top: 23%;
}

.monke {
    position: absolute;
    height: 15%;
    width: 8%;
    top: 10%;
    background: url('monke.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 100;
}

#monke1 {
    left: 20%;
}

#monke2 {
    left: 40%;
}

#monke3 {
    left: 60%;
}

.goodnut {
    position: absolute;
    top: 18%;
    bottom: 0px;
    height:8%;
    width: 5%;
    background: url('goodnut.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 99;
} 

#goodnut1 {
    left: calc(20% + 8%/2 - 2%/2);
}

#goodnut2 {
    left: calc(40% + 8%/2 - 2%/2);
}

#goodnut3 {
    left: calc(60% + 8%/2 - 2%/2);
}

.badnut {
    display: none;
    position: absolute;
    bottom: 0px;
    height: 7%;
    width: 5%;
    background: url('badnut.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 11;

}

#badnut1 {
    left: calc(20% + 8%/2 - 7%/2);
}

#badnut2 {
    left: calc(40% + 8%/2 - 7%/2);
}

#badnut3 {
    left: calc(60% + 8%/2 - 7%/2);
}

#floor {
    position: absolute;
    height: 7%;
    width: 100%;
    background-color: #ffffff;
    bottom: 0;
    z-index: 10;
}

#basket {
    height: 100px;
    width: 85px;
    position: absolute;
    bottom: 5px;
    background: url('basket.png');
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    z-index: 11;
}

#score_1 {
    position: absolute;
    color: #000000;
    font-size: 30px;
    top: 45%;
    left: 30%;
}

#restart {
    border: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    background-color: rgb(255, 255, 255);
    color: rgb(2, 2, 2);
    top: 40%;
    font-size: 35px;
    display: none;
    cursor: pointer;
}