body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
}

#starry-sky {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  overflow: hidden;
}

.rendezvous-container {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 24px;
}

.star {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  width: 2px;
  height: 2px;
  opacity: 0.8;
  animation: twinkle 5s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.2;
  }
}


@media (max-width: 768px) {
  .rendezvous-container p {
    top: 40%;
    font-size: 10px; /* Smaller font size for the poem on small screens */
  }
}
