#ebookPage img {
    width: 100%;
    animation-name: showElements;
    animation-delay: 0s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;

}

.ebooksImageWrapper {
    border-radius: 8px;
}

#ebookPage img:hover {
    transform: scale(1.05);
}


#ebookPageMainTitle {
    transform: translateX(50%);
}

#ebookPage h2 {
    font-family: 'Exo';
    padding-top: 12rem;
    color: white;
    padding-bottom: 0rem;
    width: 50%;
}

#ebookPage {
    background-image: url("./assets/ebg1.jpg");
    background-color: rgb(29, 29, 29);
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-bottom: 25vh;
}

.ebooksTitles {
    font-family: 'Exolight';
    color: #d27676;
    font-size: 2rem;
    animation-name: showElements;
    animation-delay: 0.2s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.ebooksRow {
    display: flex;
    justify-content: space-between;
    padding-top: 6rem;
}

.ebooksDescription {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    animation-name: showElements;
    animation-delay: 0.3s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}


.ebooksButton {
    border: none !important;
    box-shadow: none;
    padding: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: #d27676;
    border-radius: 4px;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.5rem !important;
    margin-top: 1rem;
    animation-name: showElements;
    animation-delay: 0.4s;
    opacity: 0;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.ebooksButton:hover {
    background-color: rgb(62, 62, 62);
}

.ebooksElements {
    margin-bottom: 6rem;
}


@media screen and (max-width: 576px) {
    #ebookPage h2 {
        width: 100%;
        padding-top: 6rem;
    }

    .ebooksTitles {
        line-height: 2rem;
        margin-bottom: 0.5rem;
    }

    #ebookPageMainTitle {
        transform: translateX(0%);
    }
}



@keyframes showElements {
    0% {
        transform: translateX(50vw);
        opacity: 0;
    }

    50% {}

    100% {
        transform: translateX(0vw);
        opacity: 100;
    }
}