<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BookNest — книжный магазин</title>
</head>
<body>
<!-- содержимое страницы -->
</body>
</html>
body {
font-family: 'Segoe UI', Tahoma, sans-serif;
margin: 0;
padding: 0;
color: #333;
background-color: #faf8f5;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
}
.book-grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
@media (max-width: 600px) {
header {
flex-direction: column;
}
.book-card {
width: 80%;
}
}