* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ddd;
  color: #000;
}

header {
  background-color: #4a80d8;
  color: white;
  text-align: center;
  padding: 1rem;
}

header h1 {
  margin-bottom: 0.5rem;
}

nav {
  text-align: center;
}

.menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
}

.nav-links {
  display: none;
}


.nav-links a {
  color: white;
  text-decoration: none;
}

main {
  max-width: 1000px;
  margin: 1rem auto;
  padding: 1rem;
  background-color: #eee;
}

main h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 3px solid white;
}

footer {
  background-color: #4a80d8;
  color: white;
  text-align: center;
  padding: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-btn {
    display: none;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
  }
}
