/* Basic reset and styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background styling for the starry sky */
body, html {
  height: 100%;
  overflow: hidden;
  background-color: #0b0d21;
  font-family: Arial, sans-serif;
}

h1 {
  color: white;
}

.starry-sky {
  position: relative;
  height: 100vh;
  width: 100%;
  /* background-image: url('path-to-your-starry-background.jpg'); /* Optional: You can set a static image */ */
  background: black;
  background-size: cover;
}

/* Styling for the stars (each star is a link) */
.star {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  animation: twinkle 1.5s infinite alternate;
  cursor: pointer;
}

@keyframes twinkle {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* Hover effect for the stars */
.star:hover {
  transform: scale(1.2);
  transition: transform 0.2s ease-in-out;
}

/* Tooltip styles */
.tooltip {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px;
  font-size: 12px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.star:hover .tooltip {
  visibility: visible;
  opacity: 1;
}


