body {
    margin: 0;
    padding: 0;
}

h3 {text-align: right; font-style: italic; color: #F01011; font-size: 24px}
img { padding: 10px;
}

.anthra {
  font-family: Optima,sans-serif;
  font-size: 16px;
  text-align: center;
  color: aqua;
  background-color: #212729;
  border: none;
}
.anthra h1 {color: aqua; font-size: 48px}
.anthra h2 {color: aqua; font-size: 32px}
.anthra table{
  font-family: Optima,sans-serif;
  font-size: 12px;
  color: aqua;
  background-color: #313739;
  padding: 0;
}
.anthra a {color: lime;}

/* body {
    margin: 0;
    padding: 0;
    font-family: Optima, sans-serif;
}
*/


.rounded img {  clip-path: circle(50%);}

/* Container for images */
  
.container8b {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Adjust spacing between images */
  justify-content: center; /* Centers images */
}

.container8b img {
  width: calc(100% / 8 - 10px); /* Adjust based on spacing */
  max-width: 10%; /* Ensures 8 images per row */
  height: auto;
}

@media (max-width: 600px) {
  .container8 img {
    max-width: 20%; /* Ensures 4 images per row */
  }
}

.container7b {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Adjust spacing between images */
  justify-content: center; /* Centers images */
}

.container7b img {
  width: calc(100% / 7 - 10px); /* Adjust based on spacing */
  max-width: 12%; /* Ensures 8 images per row */
  height: auto;
}

@media (max-width: 600px) {
  .container7 img {
    max-width: 20%; /* Ensures 4 images per row */
  }
}


/* Grid items */
.grid-item {
    position: relative;
    cursor: pointer;
    text-align: left;
}



.grid-item:hover img {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}


/* Modal styles */
.video-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border: none;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
}

iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

