:root {
  font-family: monospace, Verdana, sans-serif;
  color: white;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-size: 18px;
  padding: 0;
  background-color: #050505;
  height: 100vh;
}

.card {
  display: flex;
  height: inherit;
  justify-content: center;
  align-items: center;
}

.container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.pfpWrapper {
  overflow: hidden;
  width: 130px;
  height: 130px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  padding: 2.5px; /* Border thickness */
  background: linear-gradient(0deg, #0003cd, #6300dc, #458c8a, #6300dc, #00345c);
  background-size: 100% 400%;
  animation: gradientMove 4s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite ;
}

.pfp {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

.handle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  text-align: center;
  max-width: 420px;
}

.icon-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
}

.icon {
  color: white;
  transition: 0.3s;
  font-size: 28px;
  position: relative;
  display: inline-block;
}

.icon:hover {
  transform: translateY(-2px);
  transition: 0.3s;
}

.icon .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 16px;
}

.icon .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.icon:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Specific icon hover colors */

.icon-x:hover {
  color: #aaaaaa;
}
.icon-soundcloud:hover {
  color: #ff5500;
}
.icon-gitlab:hover {
  color: #fca326;
}
.icon-github:hover {
  color: #2dba4e;
}
.icon-bluesky:hover {
  color: #0085ff;
}
.icon-mastodon:hover {
  color: #6364ff;
}
.icon-kofi:hover {
  color: #ff5b5f;
}
.icon-twitch:hover {
  color: #9146ff;
}
.icon-codewars:hover {
  color: #b1361e;
}
.icon-instagram:hover {
  color: #e1306c;
}

/* Specific button hover colors */

.link-main:hover {
  background-color: #056a60;
  color: #ffffff;
}
.link-bandcamp:hover {
  background-color: #1da0c3;
}
.link-youtube:hover {
  background-color: #cd201f;
  color: #fff;
}
.link-github:hover {
  background-color: #24292e;
  color: #fafbfc;
}

.link-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.link {
  min-width: 200px;
  min-height: 30px;
  padding: 9px 0;
  gap: 9px;
  border-radius: 7px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}

.link:hover {
  transform: translateY(-2px);
  transition: 0.3s;
  box-shadow: 1px 1px 3px #050505;
}

@media only screen and (min-width: 1920px) {
  body {
    font-size: 22px;
  }

  .link {
    min-width: 250px;
    min-height: 40px;
    padding: 7px;
  }
}

@media only screen and (max-width: 1024px) {
  body {
    background-size: 150%;
  }
}

@media only screen and (max-width: 750px) {
  body {
    background-size: 300%;
  }
}

@media only screen and (max-width: 420px) {
  body {
    font-size: 16px;
    background-size: 350%;
  }
}
