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

.gradient-background{
  background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
} 


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

.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}

.profile-img {
  height: 100px;
  border-radius: 50%;
}

.container {
  margin: 0 73px 0 73px;
  padding: 48px 24px 0px 24px;
    width: 100%;

}

.icon-square{
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-img{
  border-radius: 50%;
  height: 100px;
}