@font-face {
    font-family: yelloMedium;
    src: url(../fonts/yellomedium.woff2);
}
@font-face {
    font-family: yelloBold;
    src: url(../fonts/yellobold.woff2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "yelloBold";
}

html, body{
    width:100%;
    height:100%;
    margin:0;
    background-color: black;
}
#wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    overflow: hidden;
    perspective: 600px;
    background-image: url(../img/bg.jpg);
    background-size: cover;
}

#logo {
    width: 94px;
    height: 94px;
    background-image: url("../img/yello.png");
    background-repeat: no-repeat;
    position: absolute;
    top: 30px;
    left: 50%;
    margin-left: -47px;
}

#msg{
    position: absolute;
    width:270px;
    height:90px;
    top:150px;
    left:50%;
    margin-left: -135px;
    background-color: rgba(0, 0, 0, 0.479);
    color:white;
    text-align: center;
    line-height: 24px;
    font-size: 21px;
    font-weight: 300;
    padding-top:19px;
    padding-right: 30px;
    padding-left:30px;
    border-radius: 20px;
    margin-right:auto;
    transition: left 0.6s;
    user-select: none;
    pointer-events:none;
    z-index: 9999;
}
#msg.hide{
    left:-300px;
}


#msgBox{
    position: absolute;
    width:270px;
    height:260px;
    top:150px;
    left: 50%;
    margin-left: -135px;
    transform: translateX(150%);
    background-color: rgba(0, 0, 0, 0.479);
    color:white;
    text-align: center;
    line-height: 34px;
    font-size: 30px;
    font-weight: 300;
    padding-top:36px;
    padding-right: 30px;
    padding-left:30px;
    border-radius: 20px;
    margin-right:auto;
    transition: left 0.6s;
    transition-delay: 1s;
    user-select: none;
    pointer-events:none;
    z-index: 9999;
}

#msgBox.show{
    transform: translateX(0%);
}

#msgBox span{
    color:#fdf200;
    font-family: "yelloMedium";
    line-height: 65px;
}

#hole1{
    position: absolute;
    width:50px;
    height:25px;
    top:450px;
    left:30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/hole1.png);
}

#hole2{
    position: absolute;
    width:50px;
    height:30px;
    top:470px;
    left:130px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/hole2.png);
}

#hole3{
    position: absolute;
    width:45px;
    height:36px;
    top:478px;
    left:245px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/hole3.png);
}

.holeHide{
    transition: opacity 0.6s;
    opacity: 0;
}

#youngTree{
    position: absolute;
    width:80px;
    height:80px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/youngtree.png);
    opacity: 0;
    transition: opacity 0.6s;
    z-index: 99;
}


#youngTree.show{
    opacity: 1;
}


.tree{
    position: absolute;
    width:140px;
    height:180px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/tree.png);
    transform-origin: center 100%;
    opacity: 0;
    transform:scale(0.3);
    transition: all 0.6s;
    z-index: 98;
}

.tree.show{
    opacity: 1;
    transform:scale(1);
}

#tree1{
    top:283px;
    left:-15px;
    z-index: 10;
}

#tree2{
    top:305px;
    left:86px;
    z-index: 11;
}

#tree3{
    top:316px;
    left:199px;
    z-index: 12;
}

