html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5 {
    font-family: 'Algreya', serif;
}

h6, a, li, span {
    font-family: 'Merriweather', serif;
}

.navbar {
    padding: 20px;
}

.parallax-container {
    height: 400px !important;
    background: rgba(0, 0, 0, 0.5);
}

.parallax {
    z-index: 0;
}

.parallax img {
    width: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

#search-btn:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.book-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.book-card img {
    height: 300px;
    object-fit: cover;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.card-content {
    flex-grow: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    display: flex;
}