html {
background-image: url('background.jpg'); background-size: cover; /* cover, contain, or a specific size */ background-position: center; /* position of the image */ background-repeat: no-repeat; /* prevent tiling */ background-attachment: fixed; /* optional: fixed or scroll */ margin: 0; min-height: 100vh;}
main { min-height: 89vh;}
footer { text-align: center; }

/ * background-color: #ccbba9 */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 0.5fr);
  gap: 20px;
}

.gallery img {
  width: 80%;
  height: auto;
}

/* Tablet Styles */
@media (min-width: 600px) and (max-width: 900px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    width: 90%;
  }
}

/* Mobile Styles */
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    width: 100%;
  }
}
