#overlayButton {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 100;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  perspective: 1000px;
  color: #33475b;
}

.container img {
  width: 800px;
  /* Adjust the width and height as needed */
  height: auto;
  animation: rotation 120s infinite linear;
}

.text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-top: 16px; */
  font-family: Arial, Helvetica, sans-serif;
}

@keyframes rotation {
  from {
    /* transform: translate(-50%, -50%) rotate(0deg); Starting position */
    transform: rotate(0deg);
    /* Starting position */
  }

  to {
    /* transform: translate(-50%, -50%) rotate(360deg); Ending position */
    transform: rotate(360deg);
    /* Ending position */
  }
}

/* Client modal overlay for when searching for a marker and nothing to display */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.modal-content {
  background-color: #fff;
  border-radius: 25px;
  padding: 20px;
  text-align: center;
  opacity: .7;
  font-family: Arial, Helvetica, sans-serif;
}

.modal-session {
  background-color: rgba(0, 0, 0, 1);
}

.modal-marker {
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-startup {
  background-color: rgba(0, 0, 0, 0.5);
}