* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Garamond;
    font-size: 1.1rem;
}

body {
    line-height: 1.4;
    background-color: white;
    color: #333;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.3rem;
}

nav ul {
    list-style-type: none;
    margin: 20px 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

.book-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.book-image img {
    max-width: 450px;
}

.book-summary {
    max-width: 600px;
}

.reviews ul {
    list-style-type: none;
    padding-left: 0;
}

.reviews li {
    background-color: #f4f4f4;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.purchase-links ul {
    list-style-type: none;
    padding-left: 0;
}

.purchase-links li {
    margin: 10px 0;
}

.purchase-links a {
    text-decoration: none;
    color: #28a745;
    font-weight: bold;
}

.press-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.press-item img {
    width: 100%;
    border-radius: 8px;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.3rem;
}
