body {
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: #fff6f7;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    text-align: center;
    padding: 60px 20px;
    background-color: #ff6b81;
    color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-family: "Sacramento", cursive;
    font-weight: 400;
    font-style: normal;    
    font-size: 3.5em;
    margin: 0;
    letter-spacing: 1px;
    font-weight: bold;
}

nav {
    text-align: center;
    margin-top: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    margin: 0 15px;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd1dc;
}

section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.author-bio {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
}

.author-pic {
    width: 180px;
    height: 180px;
    border-radius: 20%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0px 4px 8px rgba(239, 154, 154, 0.1);
}

.book-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.book-item {
    width: 30%;
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.book-item h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.book-item a {
    text-decoration: none;
    color: #ff6b81;
    font-weight: bold;
    transition: color 0.3s;
}

.book-item a:hover {
    color: #e03e00;
}

footer {
    margin-top: 60px;
    padding: 20px;
    background-color: #ff6b81;
    text-align: center;
    color: white;
}

footer p {
    font-size: 1.1em;
}

.book-cover {
    text-align: center;
    margin-bottom: 30px;
}

.cover-image {
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.cover-image-small {
    width: 150px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.buy {
    text-align: center
}

.buy a {
    text-decoration: none;
    color: #b37171;
    margin: 0 15px;
    font-size: 1.2em;
    transition: color 0.3s;
    font-weight: bolder;
}

.buy a:hover {
    color: #ff6b81;
}

.contact-item a {
    text-decoration: none;
    color: #ff6b81;
    font-weight: bold;
    transition: color 0.3s;
    margin: 10px;
}

.contact-item a:hover {
    color: #e03e00;
}