/* Banner Section */
.banner {
    position: relative;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../Images/banner/banner-book.webp);
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    filter: contrast(80%) brightness(40%);
    z-index: -1;
}

.banner-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.whitespace {
    padding-bottom: 50px;
}