@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

#preloader {
    position: fixed;
    z-index: 200;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#preloader::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9); /* Adjust color and opacity as needed */
}

.preloader-container{
    font-family:  'Montserrat', sans-serif;
    position: absolute;
    top: 0%;
    left: 0%;   
    z-index: 5000;
   
}
#cover{
    width: 100vw;
    height:100vh;

}
#coverImg{
    width: 800px;
    min-height: 580px;
    margin-top: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  
}
#PreIm1{
width: 100%;


}
#PreIm2{
    width: 100%;
    display: none;
}
#PreImBtn1{
    width: 30%;
    position: absolute;
    left: 50%;
    top: 76%;
    transform: translate(-50%,-76%);
    cursor: pointer;
  
}
#PreImBtn2{
    width: 60%;
    position: absolute;
    left: 50%;
    top: 78%;
    transform: translate(-50%,-78%);
    cursor: pointer;
    display: none;
}
#btnClose{
    position: fixed;
    right: 20%;
    top: 5%;
    width: 20px;
    cursor: pointer;
    transition: padding 0.4s ease-in-out,width 0.4s ease-in-out;

}
#btnClose:hover{
    padding: 5px;
    width: 25px;
    background-color: #1a1919;
    border-radius: 20px;
}

/*responsive web*/
@media only screen and (max-width: 768px) {
    .preloader-container{
        position: absolute;
        top: 0%;
        left: 0%;
        
    }
    #coverImg{
        width: 300px;
        min-height: 500px;
        margin-top: 12px;
    }
    #PreIm1{
        display: none;
    }
    #PreIm2{
       display: block;
    }
    #PreImBtn1{
        display: none;
    }
    #PreImBtn2{
        display: block;
    }
}
   @media only screen and (max-width: 426px) {
        .preloader-container{
            position: absolute;
            top: 0%;
            left: 0%;
            
        }
        #PreIm1{
            display: none;
        }
        #PreIm2{
           display: block;
        }
        #PreImBtn1{
            display: none;
          
        }
        #PreImBtn2{ 
            display: block;
        }
        #btnClose{
 
            right: 15%;
            top: 2%;
            
        
        }
    }


    @media only screen and (max-width: 376px) {
        .preloader-container{
            position: absolute;
            top: 0%;
            left: 0%;
        }
        #PreIm1{
            display: none; 
        }
        #PreIm2{
   
           display: block;
        }
        #PreImBtn1{
            display: none;
          
        }
        #PreImBtn2{
            display: block;
        }
    }

/*
Change the event container width here
*/

.event-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1), -10px -10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: 30px auto;
    animation: bounce 1s ease infinite alternate;
}
/*animation for web*/
@keyframes bounce{
    100%{
        transform:translate(0%,1%);
    }
    
}
@keyframes bounceTwo{
    100%{
        transform:rotateX(20deg);
    }
    
}
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

.event-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.event-date {
    font-size: 18px;
    color: #777;
}

.event-description {
    font-size: 16px;
    margin-top: 10px;
}

.event-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.event-button:hover {
    background-color: #0056b3;
}

.container-asds {
    margin: 1rem;
}