body {
  margin: 20px;
  
  background-color: black;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  overflow-x: hidden;
  height: 98vh;
  font-family: 'Polysans', sans-serif; /* Replace with your desired font */
}

.underline{
  text-decoration: underline;
}

.image-container {
  width: 98%; /* Stretches the image to fit the width */
  height: 80vh; /* Set the height to fill the viewport */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Hide overflow if needed */
}

img {
  width: 100%; /* Ensures the image fills the width */
  height: 100%; /* Ensures the image fills the height */
  object-fit: contain; /* Ensures the image covers the container without distortion */
}

.image-container2 {
  display: none;
}

p {
  font-size: 14px;
  font-weight: normal;
  color: white;
  text-align: center;
}

a {
  font-size: 14px;
  font-weight: normal;
  color: white;
  text-decoration: none;
}



/* Responsive Design */
@media (max-width: 900px) {
  .image-container2{
    display: flex;
    width: 90vw; /* Stretches the image to fit the width */
    height: 80vh; /* Maintains aspect ratio */
    object-fit: contain;
    justify-content: center;
    align-items: center;
    }

    .visible{
      display: flex;
    }

    .image-container{
      display: none;
      }

}


@media (max-width: 700px) {

  .image-container2{
    display: flex;
    width: 90vw; /* Stretches the image to fit the width */
    height: 80vh; /* Maintains aspect ratio */
    object-fit: contain;
    justify-content: center;
    align-items: center;
    }

    .visible{
      display: flex;
    }

    .image-container{
      display: none;
      }

}

@media (max-width: 500px) {

  .image-container2{
    display: flex;
    width: 90vw; /* Stretches the image to fit the width */
    height: 55vh; /* Maintains aspect ratio */
    object-fit: contain;
    justify-content: center;
    align-items: center;
    }

    .visible{
      display: flex;
    }

    .image-container{
      display: none;
      }

}

