@import url('https://fonts.googleapis.com/css?family=Poppins:wgth@300;400;500;600;700;800;900&display=swap');

.bookInfo{
    display: flex;
    min-height: 110vh;
    width: 100%;
    padding: 10px 10px 10px 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url(../others/space4.jpg);
    background-clip: cover;
    background-repeat: round;
}

.bookInfo .bookInfoContainer,
.bookInfoContainer .bookInfoInner{
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 8rem;
    flex-direction: column;
}


.bookInfoContainer .bookInfoInner{
    flex-direction: column;
    margin-top: 0rem;
}
.bookInfoInner .siteDetails,
.bookInfoInner .bookDetails{
    padding: 10px 10px 10px 10px;
    display: flex;
    align-items: center;
}
.bookInfoInner .siteDetails{
    flex-direction: column;
    margin-top: 5%;
}
.siteDetails .siteBtns{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}
.siteDetails h2{
    font-size: 12px;
    margin-bottom: 3%;
    color: #efdc76ba;
}


.bookDetails img{
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.673);
    transition: 0.6s;
    border-radius: 20px;
    width: 25%;
    margin: 5px 15px 5px 5px;
    opacity: 0.6;
}

.bookDetails img:hover{
    transform: scale(1.1);
    opacity: 1;
}

.bookDetails span{
    font-size: 18px;
    font-weight: 500;
    color: antiquewhite;
    margin-left: 10px;
}

.siteBtn .btn{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bg-color);
    z-index: 1;
    overflow: hidden;
    width: 14.5rem;
    letter-spacing: 0.25rem;
    height: 4rem;
    margin-left: 5%;
    margin-bottom: 0.5%;
}
.siteBtn .btn:hover{
    transform: scale(1.1);
    animation: neonGlow 1s infinite;
}

.siteBtn .btn::before{
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    /* border-radius: 50%; */
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
  }
  
@keyframes neonGlow {
    0% {
        box-shadow: 0 0 5px #88cf97bf, 0 0 20px #6969d98e;
    }
    50% {
        box-shadow: 0 0 10px #88cf97bf, 0 0 40px #6969d98e;
    }
    100% {
        box-shadow: 0 0 5px #88cf97bf, 0 0 20px #6969d98e;
    }
}


@media screen and (max-width: 1120px) {
    .bookInfo{
        min-height: 82.5vh;
    }
    
    .siteDetails .siteBtns{
        gap: 3rem;
    }
    .siteDetails h2{
        font-size: 14px;
    }
    
    .siteBtn .btn{
        font-size: 0.7rem;
        width: 9.5rem;
        letter-spacing: 0.15rem;
        height: 3rem;
    }
    
    /* Adjust the styles for screens with a maximum width of 768px */
    .bookInfo .bookInfoContainer,
    .bookInfoContainer .bookInfoInner {
        flex-direction: column;
        align-items: center;
    }
    /*.bookInfoContainer .bookInfoInner{*/
    /*    margin-top: -10px;*/
    /*}*/
    .bookDetails img {
        width: 45%;
        margin: 5px;
    }

    .bookDetails span {
        font-size: 10px;
        margin-left: 10px;
    }
}