@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;500;600;700;800;900&family=Ruthie&display=swap);
.title .subtitle p,
.title h1 {
  text-align: center;
}
.card,
.card .img,
.container,
.link,
.linktree {
  display: flex;
}
.footer h5,
.title .subtitle p,
.title h1 {
  font-family: Poppins, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
  text-decoration: none;
}
body {
  background: #1f1f47;
  overflow-y: visible;
}
.title {
  margin: 2rem 0 1rem;
}
.title h1 {
  font-size: 1.7rem;
  color: #fff;
}
.title .subtitle p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  color: #f0a400;
  margin-top: -1rem;
}
.title .subtitle p::after,
.title .subtitle p::before {
  content: "-";
}
.link {
  width: 320px;
  flex-direction: column;
  overflow-x: hidden;
  padding: 0 1rem;
}
.link::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.linktree {
  flex-direction: column;
}
.container {
  min-height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  scroll-behavior: smooth;
}
.card {
  width: 100%;
  max-width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.21);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  align-items: center;
  justify-content: left;
  backdrop-filter: blur(10px);
  transition: 0.3s ease-in-out;
  padding: 1rem;
  margin: 0.25rem 0;
  cursor: pointer;
  z-index: 999;
}
.card:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.card .img {
  align-items: center;
}
.card .img img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
}
.platform {
  width: calc(100% - 90px);
  margin-left: 10px;
  color: #fff;
  font-family: Poppins sans-serif;
}
.platform p {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
}
.footer h5 {
  font-size: 0.7rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.5;
  margin: 1rem 0 2rem;
}
.blob {
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(47, 184, 255, 0.42) 31.77%,
    #5c9df1 100%
  );
  mix-blend-mode: color-dodge;
  -webkit-animation: 25s infinite alternate move;
  animation: 25s infinite alternate move;
  transition: 1s cubic-bezier(0.07, 0.8, 0.16, 1);
  width: 520px;
  height: 520px;
  -webkit-filter: blur(30px);
  filter: blur(30px);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.6),
    inset 100px 100px 0 0 #fa709a, inset 200px 200px 0 0 #784ba8,
    inset 300px 300px 0 0 #2b86c5;
}
@-webkit-keyframes move {
  from {
    transform: translate(-100px, -50px) rotate(-90deg);
    border-radius: 24% 76% 35% 65%/27% 36% 64% 73%;
  }
  to {
    transform: translate(500px, 100px) rotate(-10deg);
    border-radius: 76% 24% 33% 67%/68% 55% 45% 32%;
  }
}
@keyframes move {
  from {
    transform: translate(-100px, -50px) rotate(-90deg);
    border-radius: 24% 76% 35% 65%/27% 36% 64% 73%;
  }
  to {
    transform: translate(500px, 100px) rotate(-10deg);
    border-radius: 76% 24% 33% 67%/68% 55% 45% 32%;
  }
}
::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 0.5rem;
  background-color: #bcbec6;
}
::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background-color: #9b9eaa;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #808493;
}
