@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Karla:ital,wght@0,200..800;1,200..800&family=Metamorphous&family=Sora:wght@100..800&family=Vesper+Libre:wght@400;500;700;900&display=swap');

/* GLOBAL */
* {box-sizing: border-box;}
.body {
    margin: 0;
    padding: 0;
    width: 100%;
}
.main {
    font-family: 'Sora';
}
.header {
    font-family: 'Metamorphous';
    background-color: bisque;
    padding: 25px 15px;
    overflow: hidden;
    width: 100%;
    margin: 0;
}
.header a.site-title {
    font-size: 25px;
    font-weight: bold;
}
.header a {
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 16px; 
    line-height: 25px;
    border-radius: 4px;
}
.header a:hover {
    background-color:rgb(255, 159, 159);
    color: black;
}
.header a.active {
    background-color: indianred;
    color: white;
}
.header-right {
    float: right;
}
@media screen and (max-width: 500px) {
    .header a {
        float: none;
        display: block;
        text-align: left;
    }
    .header-right {
        float: none;
    }
}

/* index.html - scroll section */
.featured-header {
    width: 100%;
    text-align: center;
    padding-bottom: 1%;
}
#genre-select {
    font-family: 'Sora';
}

/* book-list index */
.book-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}