/* 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;
}

.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;
}

