@font-face {
    font-family: Milker;
    src: url(../webfonts/Milker.otf);
}
h1,h2,h3,h4,h5{
    font-family: Milker;
}
.part-descr h4{
     background: linear-gradient(308deg, #e4873a, #ffbc00, #fff, #ffa000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg{
    background:url(../img/bg2.png) no-repeat;
    background-size: cover;
} 
.banner .part-img.animated img.power-ball.coin{
        filter: drop-shadow(0px 0px 16px #ffbc00);;
}
.popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background-color: white;
    padding: 2px;
    border-radius: 10px;
    text-align: center;
    width: 550px;
    position: relative;
}

    .popup-content img {
        border-radius: 10px;
    }

.close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #fff
}
@media(max-width:1300px) {
    .popup-content {
        width: 450px;
    }
}
@media(max-width:786px) {
    .popup-content {
        width: 90%;
    }
}

#audioIcon {
    font-size: 26px;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(45deg, #000000, #333333, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pause_btn {
    position: fixed;
    bottom: 40px;
    top: 14%;
    right: -40px;
    z-index: 9;
    width: 110px;
    height: 64px;
    border-radius: 50px;
    background: #39196694;
    border: 1px solid #f5a817;
    padding: 11px 10px 10px 15px;
}

.play_music {
    position: relative;
}

.pause_btn :after {
    position: absolute;
    border-radius: 40px;
    background: linear-gradient(311deg, #e4873a, #ffbc00, #fff, #ffa000);
    width: 50px;
    height: 50px;
    text-align: center;
    content: '';
    z-index: -1;
    left: -8px;
    top: -5px;
    animation: circle1 1s infinite;
    animation-timing-function: linear;
}
.app-body {
    background: url('../images/confetti-bg.png') no-repeat center;
    background-size:cover;
}

@keyframes circle1 {
    100% {
        transform: rotate(360deg);
    }
}

@media(max-width:600px) {

    #audioIcon {
        font-size: 21px;
    }
    .pause_btn :after {
        width: 40px;
        height: 40px;
        z-index: -1;
        left: -7px;
        top: -4px;
    }
    .pause_btn {
        height: 55px;
    }
}