html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
    background-image: url("/img/Login_BG.jpg");
    background-size: 100%;
}



header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.logo {
    position: absolute;
    width: 180px;
    top: 10px;
    z-index: 3;
}

.account {
    width: 50px;
    right: 10px;
    top: 10px;
    position: absolute;
    z-index: 3;
}

.account:hover {
    cursor: pointer;
}

.background_top {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}


.book {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 300px;
    margin-top: 20px;
    position: relative;
    z-index: 5;
}

.book > img {
    width: 21%;
    min-width: 300px;
    margin-top: 110px;
    margin-bottom: 0;
    position: relative;
    z-index: 5;
    transition: 0.5s;
    box-shadow: 30px 30px 20px rgb(0, 0, 0);
}

.book > img:hover {
    transform: scale(1.1);
}


footer {
    width: 100%;
    color: white;
    position: relative;
    z-index: 0;
    background-image: url("/img/ORFooterV.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    min-height: 300px;
}

footer > p {
    text-align: center;
    top: 150px;
    z-index: 3;
    position: relative;
}

.footer-links {
    text-align: center;
    margin-top: 200px;
    z-index: 3;
}

.footer-links a {
    margin: 0 12px;
    color: white;
    display: inline-block;
    transition: 0.4s;
}

.footer-links a:hover {
    color: rgb(173, 173, 173);
}
