.bookbar {
    font-family: 'Pixelify Sans';
    color: black;
    background-color: #4893F9;
    height: 8vh;
    width: 100vw;
    position: fixed;
}

.bookbar_title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5vh;
}

.bookbar_title img {
    margin: 1.15vh;
    height: 4.75vh;
}

.booksearch_container {
    padding-top: 8vh;
    margin: 0 20vw 0 20vw;
}

#booksearch_bar {
    display: flex;
    justify-content: center;
    align-items: center;
}

#booksearch_bar input {
    background-color: white;
    padding: 10px 20px 10px 20px;
    border-radius: 20px;
    margin: 5vh;
    width: 45%;
    font-size: 1.0em;
    border: none;
}

#booksearch_bar input:focus {
    outline: none;
}

#booksearch_results {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal-width columns */
    gap: 5vw; /* Adjust spacing between squares */
    justify-content: center; /* Center the grid as a whole */
}

.book {
    width: 100%;
}

.book img {
    width: 100%;
}

.page_title {
    padding-top: 13vh;
    padding-bottom: 3vh;
    font-size: 4em;
    text-align: center;
    font-family: 'Pixelify Sans';
    color: white;
    width: 100%;
}

.preamble {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Public Sans';
    font-weight: 500;
}

.book_title {
    font-size: 3em;
    width: 20vw;
}

.book_author {
    margin-top: 1em;
    font-size: 1.3em;
}

.review_content {
    font-weight: 500;
    font-family: 'Public Sans';
    color: white;
    width: 44vw;
    margin-left: 28vw;
    margin-top: 3vw;
}

.book_cover img {
    width: 20vw;
    height: auto;
    margin-right: 3vw;
}