body {
    overflow-x: hidden;
}
.info {
    position: fixed;
    bottom: 0px;
    left: 0px;
    background-color: rgba(255, 255, 255, .5);
    padding: 20px;
    font-size: 20px;
    display: none;
    color: white;
}

canvas {
    position: fixed;
    top: 0px
}
#start-play {
    transform: rotate(45deg);
    position: fixed;
    top: 0px;
    right: 0px;
    color: black;
    text-decoration: none !important;
    z-index: 1;
}
#start-play #lets-play {
    display: block;
    text-align: center;
    transition: .5s;
    font-weight: bold;
    opacity: 0;
    position: absolute;
    right: 0px;
    top:0px;
}

#start-play:hover .play,#start-play .play.actively {
    animation-duration: .5s;
}
#start-play:hover #lets-play,#start-play #lets-play.actively {
    transition: .5s;
    opacity: 1;
    padding: 0px 20px 5px 20px;
    color: white;
    transform: rotate(-45deg) translateX(-135px) translateY(25px);
    -webkit-transform: rotate(-45deg) translateX(-135px) translateY(25px);
    -moz-transform: rotate(-45deg) translateX(-135px) translateY(25px);
    background-color: rgba(255, 25, 25, .8);
    border-radius: 100%;
}

.play {
    transition: .5s;
    padding: 0px 20px 5px 20px;
    animation: fly 3s infinite;
    animation-timing-function: ease-in-out;
}
.content-place-holder .content{
    background-color: rgba(42,42,42,.8)!important;
    /* z-index: 2!important; */
}
#end-msg{
    background-color: rgba(0,0,0,.8);
}
@keyframes fly {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(.3);
    }
    100% {
        transform: scaleX(1);
    }
}
@media (max-width: 992px) {
    .start-play{
        display: none;
    }
}
