body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: url("your-background.jpg") no-repeat center center fixed;
  background-size: cover;
}

.main-wrapper {
  width: 800px;
  margin: 80px auto;
  background: #e8d9cf;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.2);
}

header {
  text-align: center;
}

h1 {
  font-size: 32px;
  letter-spacing: 2px;
}

.subtitle {
  font-style: italic;
  margin-bottom: 20px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #2b4c7e;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.intro {
  background: #f4ebe6;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.collection-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.item {
  background: white;
  padding: 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.item:hover {
  transform: scale(1.1);
}
