* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bricolage Grotesque", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #ffffff;
  padding: 20px;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 4rem);
  color: #000;
  margin-bottom: 15px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, #7301ff, #00aeff, #ff0088);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s linear infinite;
}

p {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: rgb(77, 81, 186);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: 0.3s;
}

.btn:hover {
  background: rgb(219, 220, 247);
}

.note {
  margin-top: 18px;
  font-size: clamp(10px, 2vw, 12px);
  color: silver;
  padding: 0 10px;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 600px) {
  body {
    align-items: flex-start;
    padding-top: 60px;
  }
}

.ico {
  border-radius: 21px;
}

.preview {
  width: 200px;
  border-radius: 20px;
  margin-top: 30px;
}

.pfp {
  width: 50px;
  display: flex;
  position: absolute;
  justify-content: center;
  z-index: -1;
  margin-left: 8pc;
  margin-top: 10px;
  border-radius: 120px;
  box-shadow: 2px 5px 30px green;
  transition: all 0.25s ease;
}

.pfp:hover {
  box-shadow: 2px 5px 30px rgb(3, 208, 3);
  transform: scale(1.12);
}

.tooltip {
  position: fixed;
  background: #0000007e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 600;
  backdrop-filter: blur(33px);
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.tooltip img {
  width: 20px;
  margin-right: 8px;
}

span {
  text-shadow: 2px 5px 30px #000;
}

p {
  text-shadow: 2px 5px 30px #000;
}
