/* styles.css */ @import url('/css2?family=Roboto:wght@400;700&display=swap'); :root { --primary-color: #3b828f; --secondary-color: #6b729a; --background-color: #ffffff; --text-color: #1e1e1e; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Roboto', sans-serif; background-color: var(--background-color); color: var(--text-color); } nav { background-color: var(--primary-color); color: white; display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; } nav a { color: white; text-decoration: none; margin-left: 1.5rem; } nav a:hover { text-decoration: underline; } main { padding: 2rem; } .book-card { max-width: 500px; margin: auto; background-color: white; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: transform 0.3s ease-in-out; } .book-card:hover { transform: translateY(-5px); } .book-title { font-size: 2rem; margin-bottom: 1rem; color: var(--primary-color); } .book-author { font-style: italic; color: var(--secondary-color); margin-bottom: 0.5rem; } .book-meta { color: #999; font-size: 0.9rem; margin-top: 0.5rem; } blockquote { background-color: #f9f9f9; border-left: 5px solid var(--primary-color); padding: 1rem; margin-top: 1rem; border-radius: 4px; max-width: 600px; } footer { margin-top: 4rem; text-align: center; font-size: 0.9rem; color: #aaa; }