body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(240, 211, 115);
}

header {
    background-color: rgb(240, 211, 115);
    padding: 20px 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
}

.tagline {
    text-align: center;
    color: #474104;
    border: 1px solid;
}

.slideshow {
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    animation: slideShow 10s infinite;
}

.slides img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@keyframes slideShow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

main {
    padding-bottom: 50px;
}

.about, .membership, .representatives {
    margin-bottom: 30px;
}

h2 {
    margin-bottom: 10px;
}

.about p {
    line-height: 1.5;
}

.about span {
    font-weight: bold;
}

.membership a {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    align-items: center;
}

.membership a:hover {
    background-color: #0062cc;
    text-align: center;
}

.representatives {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .representatives ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .representatives li {
    margin: 20px;
  }
  
  .representative {
    text-align: center;
  }
  
  .representative h3 {
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .representative img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
  }
  
  .representative.name {
    margin-top: 5px;
  }

  /* Desktop screen sizes with 16:9 resolution */
@media only screen and (min-width: 1280px) and (max-width: 1920px) {
    .representatives {
       max-width: 1280px; /* adjust this value to your desired maximum width */
       margin: 0 auto; /* center the container horizontally */
       padding: 20px; /* add some padding for better layout */
     }
   }
.registration-number {
    font-size: 13px;
    text-align: center;
}
