*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue';
}

a {
  -webkit-tap-highlight-color: transparent;
}

html{
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  overflow: hidden;
}


.container {
  position: fixed;
  inset: 0;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-image: linear-gradient(
    to bottom,
    #002d,
    #111d
  );

  .forest {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1000;
    transform: scaleX(1.3);
    pointer-events: none;

    @media (width <= 1111px) {
      transform: scale(2);
      bottom: 70px;
    }
  }

  .star {
    position: absolute;
    border-radius: 50%;
    background-color: #fff9;
    animation: moveToUp linear forwards infinite;
  }
}

@keyframes moveToUp {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  10%, 90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px);
  }
}