body {
    background-color: #000;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
  }

  header {
    text-align: center;
    padding: 40px 20px 20px;
  }

  header h1 {
    font-size: 2.5em;
    color: #f9c74f;
    border-bottom: 3px solid #f9c74f;
    display: inline-block;
    padding-bottom: 10px;
  }

  footer div {
    font-size: 1.0em;
    text-align: center;
     
    color: white;
    border-bottom: 3px solid #f9c74f;
    
    padding-bottom: 10px;
  }

  footer address {
    font-size: 1.0em;
    text-align: center;
    text-decoration: underline;
    color: white;
    border-bottom: 3px solid #f9c74f;
    
    padding-bottom: 10px;
  }

  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
  }

  .gallery img {
    width: 100%;
    max-width: 500px;
    border: 5px solid #f9c74f;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(249, 199, 79, 0.5);
  }

  .image-box {
    flex: 0 1 calc(50% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @media screen and (max-width: 768px) {
    .image-box {
      flex: 0 1 100%;
    }
  }