
    body {
      font-family: 'Sour Gummy', sans-serif;
      margin: 0;
      padding-top: 60px;
      background-image: url('Images/tileableimage.png');
      background-repeat: repeat;
      color: #333;
    }
    header img {
      width: 100%;
      height: auto;
      display: block;
    }

    .main-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin: 40px auto;
      max-width: 53%;
      padding: 20px;
    }
    .content-box img {
      margin-top: 3%;
      max-width: 100%;
      height: auto;
}

    .content-box {
      background-color: #ffffff;
      border: 4px solid #6cab36;
      flex: 1 1 600px;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
    }

    .right-column {
      flex: 1 1 250px;
      background-color: #6cab36;
      border-radius: 10px;
      padding: 20px;
      color: white;
    }

    .status-section h3 {
      margin-top: 0;
    }

    .status-item {
      margin: 10px 0;
    }

    h1, h2 {
      text-align: center;
    }
      .button-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        margin: auto;
        width: 100%;
        margin-bottom: 3%;
}
      .button-img {
        max-width: 300px;
        height: auto;
        display: block;
      }

      .lower-wrapper {
  width: 100%;
}
      .lower-content {
      background-color: #ffffff;
      border: 4px solid #6cab36;
      padding: 20px;
      flex: 50%;
      border-radius: 10px;
      text-align: Left;
      overflow: auto;
      }
    .float-image {
      float: right;
      max-width: 33%;
      height: auto;
        margin-left: 20px;
        margin-bottom: 10px;
        border-radius: 8px;
      }
.banner{
    width: auto;
    text-align: center;
    display: block;
    justify-content: center;
    margin:auto;
    max-width: 52.5%;
  }

.footer-area{
  background-color: #6cab36;
  text-align: center;
  padding: 0.7%;
  color: white;

}

.changelog {
  background-color: #fff;
  border: 4px solid #6cab36;
  overflow: auto;
  padding: 5%;
  height: 250px;
  width: 45%;
}

.badges {
  background-color: #6cab36;
  text-align: left;
  padding: 0.7%;
  color: white;
  padding: 2%;
}
      .badgescolumn {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        flex-wrap: wrap;
        margin: auto;
        width: 100%;
        margin-bottom: 3%;
      }

      .badgescolumn-img {
        max-width: 300px;
        height: 100px;
        display: block;
      }

.art-page .button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.art-page .button-img {
  max-width: 250px;
  height: auto;
  display: block;
}

.accordion {
  background-color: #6cab36;
  color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: center;
  font-family: 'Sour Gummy', sans-serif;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

 .art-gallery {
            display: grid;
           grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-left: 10%;
            margin-right: 10%;
            margin-bottom: 10%;
            width: auto;
            
        }
       .art-gallery img {
    width: 100%;
    height: 300px; 
    object-fit: cover; 
    border-radius: 10px;
    cursor: pointer;
}
        
        .art-gallery img:hover {
            transform: scale(1.05);
        }
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }
        .lightbox img {
            max-width: 90%;
            max-height: 90%;
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: #fff;
            font-size: 2em;
            cursor: pointer;
        }
