body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #FFF6F6;
  color: #444;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #FFDFDF;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
  color: #F875AA;
}

header p {
  margin-top: 0.3rem;
  color: #777;
}

nav {
  text-align: center;
  margin-top: 1rem;
}

nav a {
  color: #F875AA;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
}

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

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery img {
  width: 100%;          /* makes each image as wide as its container */
  height: auto;         /* keeps the correct aspect ratio */
  max-width: 100%;      /* prevents overflow */
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #999;
  font-size: 0.9rem;
}

 /* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 50px;
  height: 20px;
  width: 20px;
  align-self: center;
  text-decoration: none;
  border-radius: 100%;
}

/* Social media icon hover effect */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Instagram */
.fa-instagram {
  background: #D62976;
  color: white;
}

/* YouTube */
.fa-youtube {
  background: #FF0000;
  color: white;
}
