  :root {
    --star-color: #ffffff;
    /* Blinking star color */
  }

  /* body,
  html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: visible;
    font-family: 'Arial', sans-serif;
  } */

  /* Galaxy Background */
  .galaxy-background {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgb(0, 44, 70), rgb(6, 6, 54), rgb(7, 3, 7), rgb(6, 2, 32));
    z-index: 0;
  }

  /* Blinking Stars */
  .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: var(--star-color);
    filter: drop-shadow(0 0 2px var(--star-color));
    box-shadow: 0 0 6px var(--star-color);
    border-radius: 50%;
    animation: blink 16s infinite;
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.3;
    }
  }

  /* Static Tiny Stars */
  .tiny-star {
    position: absolute;
    width: 1px;
    height: 1px;
    border-radius: 50%;
  }

  /* Title */
  .title {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    font-size: 2.5em;
    color: #fff;
    z-index: 1;
    text-shadow: 0 0 10px #fff;
  }

  /* Overlay Section */
  .overlay-content {
    position: relative;
    z-index: 2;
    /* width: 100%; */
    /* height: 100%; */
    color: white;
    /* padding: 40px; */
    /* box-sizing: border-box; */
    /* overflow-y: auto; */
  }

  /* Moving Stars */
  .moving-star {
    position: absolute;
    width: 1px;
    height: 1px;
    background-color: #ffffff;
    filter: drop-shadow(0 0 2px #ffffff);
    border-radius: 50%;
    animation: moveRight linear infinite;
  }

  @keyframes moveRight {
    0% {
      transform: translateX(100vw);

      opacity: 1;
    }

    50% {
      opacity: 1;
    }

    100% {
      transform: translateX(-100vw);
      opacity: 1;
    }
  }