@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #fff9fc;
  color: #4d4d4d;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background-color: #ffe6ef;
  padding: 1.5em 0;
  border-bottom: 3px solid #ffd6e0;
}

h1 {
  font-size: 2em;
  color: #ff94b6;
  margin-bottom: 0.5em;
}

nav a {
  margin: 0 10px;
  color: #ff94b6;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

section {
  margin: 40px 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(255, 182, 193, 0.3);
}

h2 {
  color: #ffb6c1;
  margin-bottom: 10px;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.art-grid img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.art-grid img:hover {
  transform: scale(1.03);
}

footer {
  margin-top: 40px;
  background-color: #ffe6ef;
  padding: 1em 0;
  color: #777;
  font-size: 0.9em;
  border-top: 3px solid #ffd6e0;
}

a {
  color: #ff94b6;
}
