html,
body {
  height: 100%;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

body {
  background: linear-gradient(-45deg, #4c8bf5, #4c8bf5, #000000, #000000);
  background-size: 700% 700%;
  animation: gradient 20s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

:root {
  --accentColor: #e6e6e6;
}

.description {
  color: white;
  font-size: large;
  text-align: center;
  margin: 40px auto;
  margin-top: 10px;
  width: auto;
  max-width: 500px;
}

.source {
  color: white;
  text-align: center;
  margin: 27px auto;
  margin-top: 10px;
  width: auto;
  max-width: 500px;
  font-size: small;
  margin-top: 50px;
}

.profilePicture,
.profilePicture img {
  position: relative;
  width: 130px;
  height: 130px;
  display: block;
  margin: 35px auto 20px;
  border-radius: 50%;
}

.userName {
  color: var(--accentColor);
  font-size: x-large;
  font-weight: bold;
  line-height: 1.5;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.bio {
  color: var(--accentColor);
  font-size: x;
  line-height: 2;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.title {
  color: var(--accentColor);
  font-size: x-large;
  line-height: 1;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.links {
  max-width: 675px;
  width: auto;
  display: block;
  margin: 27px auto;
}

.link {
  position: relative;
  background-color: transparent;
  color: var(--accentColor);
  border: solid var(--accentColor) 2px;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
  display: block;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .link:hover {
    background-color: var(--accentColor);
    color: rgba(0, 0, 0, 0.5);
  }
}
