@import url('https://fonts.googleapis.com/css2?family=Luxurious+Roman&family=Roboto+Mono:ital,wght@0,400;0,700;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

* {
    margin:0;
    padding:0;
    box-sizing: border-box;
    transition: all .3s ease;
}

body {
    background-color: #cfc9bc;
}

.header {
    display: flex;
    min-height: 100vh;
    max-height: 100vh;
    align-items: center;
    justify-content: center;
}

header {
    display: block;
    align-items: center;
    text-align: center;
    width: 100%;
    background-color: #c4ae8e;
    padding: 5px;
    justify-content: space-around;
    font-family: 'Lobster', cursive;
    font-size: 1.56em;
    color: #e9dfcf;
    animation: flipInY 1.1s;
}

.book {
    font-family: 'Roboto Mono', monospace;  
    margin-left: 72px;
    margin-bottom: 350px;
    margin-top: 350px;
    display: inline-block;
    padding-right: 20px; 
    padding-left: 20px;
    padding-bottom: 5px; 
    padding-top: 5px;
    background-color: #e9e1d5;
    animation: fadeIn 1s;
}
.book:hover {
    transform: scale(1.1);
}

.author {
    text-decoration:none;
    color: rgb(114, 63, 4);
    text-decoration-line: underline;
}
.author:hover {
    text-shadow: 0 0 5px #f89900;
}
.by {
    display: block;
    margin-left: 25px;
    margin-top: 5px;
    font-size:.9em;
}

.bookimg img {
    max-height: 400px;
    max-width: 500px;
    border: 5px solid #866839;
    border-radius: 12px;
    animation: fadeIn 1s;
}
.bookimg:hover {
    transform: scale(1.2);
}

article {
    display:inline-block;
    margin-top: 28px;
    max-width: 750px;
    line-height: 1.4;
    font-family: 'Luxurious Roman', cursive; 
    font-weight: 600;
    font-size: .93em;      
    font-style: italic;
}
li {
    list-style-type: square;
    list-style-position: outside;
}

#rating {
    display: flex;
    margin-top: 10px;
    margin-left: 25px;
    color: green;
    white-space: pre;
    transition: all .1s ease;
}
#rating:hover {
    text-shadow: 0 0 5px #f89900;
}

#ratingfont {
    font-family: 'Roboto Mono', monospace; 
    color: #866839;
}

@media (max-width:900px) {
    body {
        display: block;
    }
    .bookimg {
        width:100%;
        margin:20px 50%;
    }
    .header {
        width:100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .book {
        width:100%;
        margin: 5px;
    }
}

