body {
  background: linear-gradient(-45deg, #5aad45, #45ad93, #23a6d5, #3a0eb3);
  background-size: 400% 400%;
  animation: gradient 120s ease infinite;
  font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  padding: 36px 12px 12px 12px;

}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

img {
  border-radius: 50%;
}

.profile-picture {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
  height: auto;
  max-width: 100px;
}

.profile-name {
  text-align: center;
  padding: 10px;
  color: white;
  font-size: 20px;
}

.profile-about {
  text-align: center;
  padding: 2px;
  color: white;
  font-size: 14px;
  font-weight: 300;
}

.links {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  border: 0.5px solid rgb(255, 255, 255);
  border-width: 1px;
  width: 490px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
}

.links-in {
  border: 0.5px solid rgba(255, 255, 255, 0);
  border-width: 1px;
  width: 30px;
  display: block;
  border-radius: 10px;
  left: 20px;
  position: absolute;
  font-size: 18px;
}

.hover {
  text-decoration: none;
  color: rgb(255, 255, 255);
  transition: color 1s;
}

.hover:hover {
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
  text-decoration: none;
}

.bottom-text {
  text-decoration: none;
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: rgb(255, 255, 255);
}

.link-hide {
  text-decoration: none;
}
.link-hide:hover {
  text-decoration: none;
}

@media (max-width: 548px) {
  .links {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    border: 0.5px solid rgb(255, 255, 255);
    border-width: 1px;
    width: 290px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    position: relative;
  }
  .profile-about {
    text-align: center;
    padding: 2px;
    color: white;
    font-size: 14px;
  }
}

.links-footer {
  width: 40px;
  display: inline-block;
  border-radius: 0;
  font-size: 14px;
  text-align: center;
  margin: 10px;
  margin-top: 50px;
}

.links-footer img {
  border-radius: 0!important;
}
