/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 20px;
}

header img {
  max-width: 20%;
  height: auto;
}

/* Main Content */
main {
  text-align: center;
}

h1 {
  margin-bottom: 10px;
  color: #000;
  font-size: 5em;
  text-transform: uppercase;
  font-weight: 100;
}

p {
  margin-bottom: 20px;
  color: #555;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery a {
  margin: 5px;
}

.prize-img {
    TEXT-ALIGN: CENTER;
    MARGIN-LEFT: AUTO; 
    MARGIN-RIGHT: AUTO;
}

.gallery img {
  max-width: 100%;
  height: auto;
  border: 3px solid #ddd;
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  border-color: #333;
}

/* Lightbox (You will need to add specific styles based on the lightbox library you choose) */
.lightbox {
  /* Lightbox styles go here */
}

/* Media Queries */
@media only screen and (max-width: 600px) {
  .gallery {
    flex-direction: column;
  }
  header img {
  max-width: 80%;
  height: auto;
}
  h1 {
  font-size: 2em;
}
}

@media only screen and (min-width: 601px) {
  .gallery a {
    width: calc(50% - 10px);
  }

}

@media only screen and (min-width: 992px) {
  .gallery a {
    width: calc(33.333% - 10px);
  }
}

@media only screen and (min-width: 1200px) {
  .gallery a {
    width: calc(20% - 80px);
  }
}
