@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  color: white;
  user-select: none;
}

body {
  background-image: url("./res/background.jpeg");
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 50px;
  font-family: "Comfortaa";
  overflow-y: scroll;
}

.card:first-child {
  margin-top: 100px;
}

.card:last-child {
  margin-bottom: 100px;
}

.card {
  aspect-ratio: 4 / 5;
  height: 50vh;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 1vw 1vw 2vw -0.2vw black;
  border-radius: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-img {
  width: 8vw;
}

.streamer,
.youtuber,
.artist {
  font-weight: 700;
  font-size: 8vw;
  -webkit-text-fill-color: transparent;
}

.streamer {
  background: radial-gradient(100% 1821.46% at 0% 0%, #ffffff 0%, #8000ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.artist {
  background: radial-gradient(
    100% 625% at 0% 0%,
    #ffffff 0%,
    rgba(0, 255, 209, 0.5) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.youtuber {
  background: radial-gradient(100% 1806.25% at 0% 0%, #ffffff 0%, #ff0000 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.about-me {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  text-align: center;
  margin-top: 15vh;
}

.card-title {
  text-align: center;
  margin-top: 4vh;
  font-size: 10vw;
  font-weight: 100;
}

.discord {
  display: flex;
  flex-direction: column;
  margin-top: 14vh;
}

.dc-text {
  font-size: 7vw;
}

.link {
  font-weight: 900;
  font-size: 7vw;
  background: linear-gradient(97.3deg, #133dd1 0%, #00ff29 98.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.socials {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: unset;
}

.social {
  display: flex;
  align-items: center;
  gap: 8vw;
  margin-left: 16vw;
}

.social-link:hover {
  text-decoration: underline;
}

@media (min-width: 1080px) {
  body {
    flex-direction: row;
    overflow: hidden;
    justify-content: space-evenly;
    height: 100vh;
    gap: 0;
  }

  .card:first-child {
    margin-top: 0;
  }

  .card:last-child {
    margin-bottom: 0;
  }

  .social-link {
    text-decoration: none;
    font-size: 2.3vw;
  }

  .social-img {
    width: 3vw;
  }

  .card {
    aspect-ratio: 4 / 5;
    height: 70vh;
  }

  .card-title {
    text-align: center;
    margin-top: 4vh;
    font-size: 4vw;
    font-weight: 100;
  }

  .about-me {
    display: flex;
    flex-direction: column;
    gap: 4vh;
    text-align: center;
    margin-top: 15vh;
  }

  .discord {
    display: flex;
    flex-direction: column;
    margin-top: 15vh;
  }

  .dc-text {
    font-size: 3vw;
  }

  .socials {
    display: flex;
    justify-content: space-evenly;
    align-items: unset;
    left: 4vw;
  }

  .social {
    display: flex;
    align-items: center;
    gap: 3vw;
    margin-left: 3vw;
  }

  .link {
    font-weight: 900;
    font-size: 3vw;
  }

  .artist,
  .youtuber,
  .streamer {
    font-size: 4vw;
  }
}
