
section h2 {
    text-decoration: underline;
    font-family: "Times New Roman", Times, serif;
  }
  
p2{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
  }
  
p3{
  font-size: larger;
    text-align: center;
    font-family: "Lucida Console", "Courier New", monospace;
  }

figure{
  display:inline-block;
  border: 1px solid #000;     /* Your border style here */
  margin: 0;                  /* Remove default figure margins */
  padding: 5px;               

  
}

figcaption{
    color: gray;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: small;
}
footer{
    text-align:center;
    display: inline-block;
    color:gray;
    font-size:small;
    
    
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/* Popup container */
.img-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup image */
.popup-image {
  max-width: 80%;
  max-height: 80%;
  border: 10px solid white; /* White border around the image */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Drop shadow */
  animation: fadeIn 0.3s ease-in-out;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: #ff0000; /* Red color on hover */
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.9);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

