body {
  background-color: black;
  text-decoration: none;
  user-select: none;
}

html,
body {
  overflow-x: hidden;
  touch-action: pan-y;
  touch-action: pan-x;
  user-select: none;
  height: 100%;
  margin: 0;
  max-width: 100%;
  scroll-behavior: smooth;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  text-decoration: none;
  user-select: none;
}

html,
:host {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
  --all_color: rgb(129, 7, 113);
  --rain-color: rgb(129, 7, 113);
  --rain-count: 90;
  --rain-speed: 1;
  --rain-length: 1;
  --trail-length: 20;
}


.main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 650px;
  background-color: rgb(0, 0, 0);
  padding: 10px;
  border-radius: 60px;
  border: 1px solid var(--all_color);
  margin: auto;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main_load {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  background-image: linear-gradient(
    135deg,
    var(--all_color),
    rgba(161, 161, 161, 0.623)
  );
  width: 100%;
  height: 100%;
  border-radius: 60px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.c {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.082) 10%,
    transparent 10%
  );
  border-radius: 100%;
  z-index: 1;
}

.c1 {
  left: -300px;
  bottom: -200px;
}

.c2 {
  left: -10px;
  bottom: -200px;
  width: 150%;
  height: 150%;
}

.c3 {
  left: -300px;
  bottom: -350px;
  width: 170%;
  height: 170%;
}

.main_load h1 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  transition: all 0.5s ease-in-out;
}

.all {
  width: 120px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transition: all 2s ease-out;
  opacity: 0;
}

.all img {
  width: 110px;
  height: auto;
  border-radius: 100%;
  padding: 5px;
  border: 3px solid var(--all_color);
  position: relative;
  top: 110px;
}

.all h2 {
  color: var(--all_color);
  position: relative;
  bottom: 0px;
  transform: translateY(110px);
}

.buttons a {
  display: block;
  color: white;
  border: 1px solid var(--all_color);
  border-radius: 10px;
  width: 90%;
  height: 35px;
  text-align: center;
  margin: 15px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
  user-select: none;
  position: relative;
  top: 15px;
}

.buttons {
  width: 100%;
  transform: translateY(50px);
  transition: all 2s ease-out;
  opacity: 0;
  text-decoration: none;
  user-select: none;
  display: none;
}

.buttons a:hover {
  background-color: var(--all_color);
  color: black;
}

.rain-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

#rain-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.content p {
  font-size: 1.2rem;
  opacity: 0.9;
}


@media (max-width: 490px) {
  .main {
    width: 90%;
    height: 600px;
  }
}
