* {
  padding: 0;
  margin: 0;
}

body {
  animation: 10000ms ease-in-out infinite color-change;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  padding: 50px;
  text-align: center;
  justify-content: center;
}

footer {
  background: linear-gradient(250deg, #191b1b, #736bc7, #3a09b5) fixed;
  text-align: center;
  padding: 50px;
}
.info {
  text-align: center;
}
.userInfo {
  padding: 10px;
}
.img {
  margin: 20px;
  border-radius: 250px;
  width: 300px;
  box-shadow: 1px 1px 5px black;
}
.personData {
  justify-items: center;
  display: grid;
}
.repoInfo {
  box-shadow: 1px 1px 5px black;
  background: linear-gradient(150deg, #191b1b, #736bc7, #3a09b5) fixed;
  padding: 20px;
  border-radius: 20px;
  border: 1px black solid;
  margin: 20px;
  justify-items: center;
  display: grid;
}
.cardInfo {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 20px;
}

.chart {
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  max-height: 250px;
  max-width: 250px;
  padding: 25px;
}
.projects {
  display: grid;
  grid-template-columns: 1fr;
}
@keyframes color-change {
  0% {
    background-color: rgb(7, 41, 152);
  }
  10% {
    background-color: rgb(65, 32, 153);
  }
  20% {
    background-color: rgb(142, 120, 240);
  }
  30% {
    background-color: rgb(176, 151, 235);
  }
  40% {
    background-color: rgb(149, 157, 233);
  }
  50% {
    background-color: rgb(172, 169, 232);
  }
  60% {
    background-color: rgb(149, 157, 233);
  }
  70% {
    background-color: rgb(176, 151, 235);
  }
  80% {
    background-color: rgb(142, 120, 240);
  }
  90% {
    background-color: rgb(65, 32, 153);
  }
  100% {
    background-color: rgb(7, 41, 152);
  }
}
@media (min-width: 668px) {
  .repoInfo {
    justify-items: center;
    display: grid;
  }

  .personData {
    justify-items: center;
    display: grid;
  }
  .projects {
    grid-template-columns: 1fr 1fr;
  }
  .cardInfo {
    font-size: 16px;
    padding: 5px;
  }
}
