body {
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

.content {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    color: black;
    background-color: black;
    background-image: url(/assets/images/seats.webp);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}
.content .block{
    padding: 50px 100px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    height: 100vh;
    gap: 130px;
}
.content .block>img{
    width: 95px;
    height: 86px;
}
.content h1{
    font-size: 64px;
    color: #fff;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 500;
    margin-bottom: 0px;
}
.content p{
    font-size: 14px;
    color: #fff;
    text-align: left;
    font-family: 'Clash Grotesk', sans-serif;
}
.content p>a{
    color: #3940cf;
    font-family: 'Clash Grotesk', sans-serif;
    cursor: pointer;
    z-index: 999;
    position: relative;
}
.content span{
    font-family: fantasy !important;
}

.curtainContainer {
    position: absolute;
    display: flex;
    top: -10%;
    width: 100%;
    height: 110%;
    margin: auto;
    transform-style: preserve-3d;
    overflow: hidden;
    transition: transform 6s ease;
}

/* Curtain default transform */
.curtainContainer:nth-child(1) {
    transform-origin: -120% top;
    justify-content: flex-start;
    transform: translateX(-5vw);
}

.curtainContainer:nth-child(2) {
    transform-origin: 120% top;
    justify-content: flex-end;
    transform: translateX(15vw);
}

/* Open state on click */
.curtainContainer.open:nth-child(1) {
    transform: translateX(-150vw) scaleX(0);
}

.curtainContainer.open:nth-child(2) {
    transform: translateX(150vw) scaleX(0);
}

/* Remove hover effect */
.curtainBody:hover .curtainContainer:nth-child(1),
.curtainBody:hover .curtainContainer:nth-child(2) {
    transform: none;
}

.unCurtain {
    display: inline-block;
    width: 15vw;
    margin: 0;
    padding: 0;
    height: 120vh;
    background-size: 100% 100%;
    background: repeating-linear-gradient(
        to left,
        #dd3232 4vw,
        #aa2828 12vw,
        #f24c4c 15vw
    );
    transform-origin: 0 0%;
    transform: rotate(3deg);
    transition: transform 4s ease;
    animation: swing 2s ease infinite;
}

@keyframes swing {
    50% {
        transform: rotate(-3deg);
    }
}

.unCurtain:nth-child(2) {
    margin-left: -10vw;
    animation-delay: -0.1s;
}
.unCurtain:nth-child(3) {
    margin-left: -10vw;
    animation-delay: -0.2s;
}
.unCurtain:nth-child(4) {
    margin-left: -10vw;
    animation-delay: -0.3s;
}
.unCurtain:nth-child(5) {
    margin-left: -10vw;
    animation-delay: -0.4s;
}
.unCurtain:nth-child(6) {
    margin-left: -10vw;
    animation-delay: -0.5s;
}
.unCurtain:nth-child(7) {
    margin-left: -10vw;
    animation-delay: -0.6s;
}
.unCurtain:nth-child(8) {
    margin-left: -10vw;
    animation-delay: -0.7s;
}
.unCurtain:nth-child(9) {
    margin-left: -10vw;
    animation-delay: -0.8s;
}
.unCurtain:nth-child(10) {
    margin-left: -10vw;
    animation-delay: -0.9s;
}
.unCurtain:nth-child(11) {
    margin-left: -10vw;
    animation-delay: -1s;
}
.unCurtain:nth-child(12) {
    width: 10vw;
    background: repeating-linear-gradient(
        to left,
        #dd3232 4vw,
        #aa2828 8vw,
        #f24c4c 10vw
    );
    margin-left: -10vw;
    animation-delay: -1.1s;
}

.curtainBody {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

.overlay {
    display: block;
    position: absolute;
    color: white;
    top: 0%;
    left: 0%;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to top, rgba(2, 2, 2, 0) 0vh, rgb(0, 0, 0) 100vh);
    transition: opacity 3s ease;
    z-index: 1;
}

.curtainBody:hover .overlay {
    opacity: 0;
}


@media(max-width:768px){
    .content{
        background-position: top;
        background-size: cover;
    }
    .content h1 {
        font-size: 44px;
    }
    .content span{
        font-size: 44px;
    }
    .content .block {
        padding: 40px 20px;
        gap: 100px;
    }
    .content .block>img{
        width: 66px;
        height: 66px;
    }
    .curtainBody{
        overflow: hidden;
        position: relative;
    }
    /* .overlay{
        display: none;
    } */
}