body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f5ff;
  color: #222244;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
}

.page {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
  text-align: center;
}

.main-photo {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.favorites-list {
  padding-left: 20px;
}