body {
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
}

.info {
    box-sizing: border-box;
    padding: 4%;
    border-bottom: 1px solid #e5e5e5;
}

#book {
    box-sizing: border-box;
    padding: 4%;
    line-height: 28px;
    font-size: 17px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 2vh;
}

.nav {
    box-sizing: border-box;
    padding: 4%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 3vh;
    font-size: 17px;
}

.list {
    display: grid;
    grid-template-columns: 46% 46%;
    grid-column-gap: 8%;
    grid-row-gap: 6%;
    padding-bottom: 10%;
}

.list a {
    text-decoration: none;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.list a img {
    border-radius: 9px;
    margin-bottom: 1vh;
    height: 28vh;
    object-fit: cover;
}

.list a span {
    color: #333333;
}

.settings {
    padding-top: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings button {
    background: lightcyan;
    border: 0;
    padding: 8px 16px;
    border-radius: 9px;
    font-weight: bold;
}