@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
body{
    margin :0;
    background-color: #240202;
    font-family: 'Poppins', sans-serif; 
    font-size: 15px;
}
.banner{
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.banner .bg{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: auto 100%;
    background-position: center bottom;
    transition: 0.1s;
}
.banner .bg-1{
    background-image: url('https://cdn.dribbble.com/users/1492844/screenshots/3307274/travel.gif');
}

.banner .bg-8{
    background-image: url('../IMAGES/img/7t.png');
}
.banner .bg-9{
    background-image: url('../IMAGES/img/8.png');
}
.banner  h1{
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 11rem;
    font-family: 'Pacifico', cursive;
    color: #000000;
}
.intro{
    min-height: 20vh;
    color: #fcfcfc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif; 
}


.intro img{
    width: 130px;
    height: 130px;
    border-radius: 50%;
}
.intro p{
    font-family: 'Poppins', sans-serif; 
    width: 700px;
    max-width: 100%;
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
}
.intro button{
    background-color: #FD0003;
    padding: 10px 50px;
    border: 1px solid #929292;
    border-radius: 5px;
  
    color: #fff;
       font-family: 'Poppins', sans-serif; 
    font-weight: 500;
}


.animation-show{
    transform: translateY(50px);
    opacity: 0;
    transition: 0.7s;
}
.active .animation-show{
    transform: translateY(0);
    opacity: 1;
}
.animation-show:nth-child(2){
    transition-delay: 0.3s;
}
.animation-show:nth-child(3){
    transition-delay: 0.6s;
}
.animation-show:nth-child(4){
    transition-delay: 0.9s;
}



.bottoncard{

   
    color: #fcfcfc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif; 
    font-size: 3rem;


    

}


.litdiv {
    


   
    color: #fcfcfc;
    display: flex;
    flex-direction: column;
  
    /* align-items: center; */


margin-left: 20%;   
 font-family: 'Poppins', sans-serif; 
    


    


}
#planeimg{
    display: flex;
    margin-left: 10px;

    justify-content: center;
}
#planeimg >img{
    width: 30vh;
}


.bottoncard2{

   margin-top: 10vh;
    color: #fcfcfc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif; 
    font-size: 3rem;


    

}

.library{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    color:  #fcfcfc;
    font-size: 2rem;

    margin-bottom: 20px;
}
.library img{
    width: 90%;
    height: 500px;
    object-fit: cover;
}
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgb(100, 94, 94); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 2rem; /* Increase font size */
   
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }


@media screen and (max-width: 768px){
    .banner h1{
        font-size: 5rem;
    }
    .library{
        grid-template-columns: repeat(2, 1fr);
    }
    .library img{
        height: 300px;
    }
    #planeimg{
        display: flex;
        margin-left: 1px;
    
        justify-content: center;

    }
}