.text-box {
  border: 2px solid #333333;       /* Creates the visible outline */
  background-color: #5a4f4f;     /* Fills the inside of the box */
  padding: 20px;                 /* Adds breathing room around the text */
  margin: 15px;                  /* Adds empty space outside the box */
  width: 300px;                  /* Limits how wide the box can get */
  border-radius: 8px;            /* Rounds the corners slightly */
}
.box {
  width: 300px;
  height: 200px;
  display: grid;
  text-align: center;
}



  

:link {
  color: #000000;
}

/* Visited link */
a:visited {
  color: #000000;
}

/* Mouse over link */
a:hover {
  color: #000000;
}

/* Selected link */
a:active {
  color: #000000;
}
.center-text {
            text-align: center;
        }
      .banner {
  background-image: url('banner.png');
  background-size: cover;       /* Scales the image to cover the entire space */
  background-position: center;  /* Centers the image */
  background-repeat: no-repeat; /* Prevents tiling */
  padding: 100px 20px;          /* Gives the banner vertical height */
  text-align: center;
  color: white;
}
    
  





/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox:target {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  inset: 0;
}
/* GRID */
.main .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 20px auto;
  padding: 10px;
}

.main .gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

