body {
    background-color: #000;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* overflow: hidden; */
}

.container-mb {
    display: none;
}

.container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    position: relative;
    background: url('images/bgMain.jpg') no-repeat center center;
    background-size: cover;
}

.container .logo {
    position: absolute;
    z-index: 1;
    /* height: 100vh; */
    width: 100%;
    height: 100%;
}

.container .payment {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    /* height: 100vh; */
}

.container #package {
    z-index: 9;
}

.container #package2 {
    z-index: 9;
}

.container #openButton {
    position: absolute;
    z-index: 9;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.container #claimButton {
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.container .background {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.container .ribbon {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    animation: move 9s linear 0s infinite;
    left: -10px;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .container {
        display: none;
    }

    .container-mb {
        width: 100%;
        /* height: 100vh; */
        display: flex;
        /* justify-content: center; */
        /* align-items: center; */
        position: relative;
        overflow: hidden;
    }



    .background {
        z-index: 0;
        height: auto;
        width: 100%;
        /* height: 100vh;
        width: auto; */
    }

    #openButton {
        position: absolute;
        z-index: 9;
        width: 100%;
        height: auto;
        /* height: 100vh;
        width: auto; */
        cursor: pointer;
        transition: opacity 0.5s ease;
    }

    .ribbon {
        position: absolute;
        z-index: 2;
        width: 100%;
        height: auto;
        /* height: 100vh;
        width: auto; */
        animation: move 9s linear 0s infinite;
        /* left: -10px; */
    }

    #claimButton {
        position: absolute;
        z-index: 9;
        width: 100%;
        height: auto;
        /* height: 100vh;
        width: auto; */
        cursor: pointer;
        transition: opacity 0.5s ease;
    }
}


@keyframes move {
    100% {
        transform: rotate(360deg) translatex(5px) rotate(-360deg);
    }

    0% {
        transform: rotate(0deg) translatex(5px) rotate(0deg);
    }
}