.preloader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.preloaderImage {
  height: 100vh;
}

/* Popup styles */

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 10000000000;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 12px 12px 0;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.popup-content img {
  max-height: 80vh; /* Set the maximum image height to 80% of the viewport height */
  max-width: calc(100vw - 24px);
  width: auto; /* Allow the image to scale proportionally */
  display: block; /* Remove any inline padding/margin */
  margin: 0 auto; /* Center the image horizontally */
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 0.65;
}

.banner {
  background-color: white;
  width: 100%; /* Set the banner width to be the same as the image */
  text-align: center; /* Center-align the text within the banner */
  box-sizing: border-box; /* Include padding in the width calculation */
  font-size: 1.5rem; /* Adjust font size as needed */
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1;
  color: black; /* Set text color to black or your preferred color */
}
