#overlayDiv {
    z-index: 2147483647;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: #041938;
}

body{
    margin: 0px !important;
}

.hidePlayer {
    opacity: 0;
    visibility: hidden;
    z-index: 0;
}

#overlayLogo {
    z-index: 2147483647;
    width: 20%;
    position: absolute;
    left: calc(50% - 10%);
    top: 10%;
}

#overlayImg {
    object-fit: contain;
    filter: blur(45px);
    position: fixed;
    width: 100%;
    height: 100vh;
}

#playBtnGame {
    color: white;
    background-color: #16a34a;
    border-radius: 60px;
    position: absolute;
    width: 35%;
    height: 15%;
    bottom: 17.5%;
    border: 1px solid transparent;
    left: calc(50% - 17.5%);
}

#playBtnGame:hover {
    border: 2px solid #fdfdfd;
    box-shadow: inset rgb(255 255 255 / 40%) 0px 0px 40px 0px, rgb(255 255 255 / 14%) 0px 30px 100px -24px;
}

.floating {
    animation-name: floating;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

#plIcon {
    position: absolute;
    width: 3vw;
    /* height: 25px; */
    left: 45px;
    top: calc(50% - 1.5vw);
}

#plText {
    font-family: sans-serif;
    font-size: 3vw;
    font-weight: 600;
    padding-left: 30px;
    position: relative;
}

/* used for bouncing play button, currently not in use */
@keyframes bounce {
    0% {
        transform: scale(1, 1) translate(0px, 0px);
    }

    30% {
        transform: scale(1, 1) translate(6px, 0px);
    }

    75% {
        transform: scale(1, 1) translate(10px, 0px);
    }

    100% {
        transform: scale(1, 1) translate(-10px, 0px);
    }
}

.bounce {
    animation: bounce 0.75s infinite;
}

@media (min-width:321px) and (max-width:750px){
    #playBtnGame {
        width: 50%;
        height: 4.5rem;
        bottom: 25%;
        left: calc(50% - 25%);
    }    
}

@media (max-width: 481px) {
    #overlayLogo {
        margin: 0px;
        top: 20%;
        width: 40%;
        left: calc(50% - 20%);
    }

    #playBtnGame {
        width: 70%;
        height: 4rem;
        bottom: 25%;
        left: calc(50% - 35%);
    }

    #plIcon {
        width: 6vw;
        /* height: 20px; */
        top: calc(50% - 3vw);
    }

    #plText {
        font-size: 6vw;
    }
}

.ub-frame> :first-child {
    width: 100%;
    height: 100% !important;
    position: absolute !important;
    top: 0px !important;
}

.plLoading {
    animation: rotate360 2s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}