body {
        font-family: Arial, sans-serif;
        margin: 0;
}

header{
    background: linear-gradient(to right, rgb(130, 97, 57), rgb(255, 239, 219),rgb(130, 97, 57));
    width: 100%;
    height: 150px;
    padding: 20px;
    text-align: center;
    color: rgb(109, 62, 0);
}


.content-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap; 
    justify-content: space-between;
    width: 800px;
    margin-right: 100px;
}
a{
    text-decoration: none;
}
    
.book-lists, .top10, .quotes-container {
    width: 80%;
    height: 330px;
    margin-bottom: 20px;
    position: relative;
    margin-left: 100px;
}

.quotes-container{
    display: flex;
    flex-direction: column;
    margin-top: 70px;
}

.book-lists::before, .top10::before, .left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    opacity: 0.4;
    z-index: -1;
}

.book-lists::before {
    background-image: url("pictures/books.webp");
}

.top10::before {
    background-image: url("pictures/top10.jpg");
}

.left::before {
    background-image: url("pictures/quoyes.avif");
}

.arrow-container {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.arrow {
    width: 130px;
    height: 80px;
}

.book-lists p, .quotes-container p, .t-left p {
    color: rgb(147, 84, 0);
    text-align: center;
    font-size: 2em;
    margin: 70px;
    padding: 100px;
}

.quotes-container p{
    padding: 1px;
}

.left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right {
    font-size: 14px;
    flex: 1;
}

.book-lists:hover, .top10:hover, .quotes-container:hover {
    height: 380px;
    transition: height 0.5s;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.30);
}

footer {
    background-color: #a67c52;
    height: 200px;
    padding: 20px;
    width: 100%;
    color: #ffffff;
}


.contact{
    display: inline-block;
    background-color: rgb(193, 171, 143);
    width: 400px;
    padding-left: 50px;
    margin-top: 15px;
    margin-left: 20px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.30);
    border-radius: 10px;
}
