body {
  background: #154c79;
  font-family: "Poppins", sans-serif;
  color: white;
}

hr {
  height: 2px;
  width: 80%;
  background-color: #eab676;
  border-radius: 10px;
  margin-bottom: 20px;
}
.user-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.user-information {
  max-width: 300px;
}
img {
  border-radius: 50%;
  box-shadow: 0px 0px 13px -2px #000000;
  width: 250px;
  justify-content: center;
  border: 5px solid #eab676;
}

h1 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
}
h2 {
  text-align: center;
  margin-top: 20px;
  font-size: 30px;
  font-weight: 200;
}
h3 {
  font-size: 25px;
  margin: 5px;
  font-weight: 300;
  text-align: center;
}
h4 {
  font-size: 15px;
  align-self: flex-start;
  margin: auto;
  padding: 4px;
  font-weight: 100;
}
p {
  font-size: 15px;
  color: black;
  margin: 3px;
}
a {
  text-decoration: none;
  color: black;
  justify-content: center;
}
.user-information {
  max-width: 90%;
  justify-content: center;
}

.repo-cards {
  border-radius: 10px;
  margin: 15px;
  padding: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 3px solid #76b5c5;
}

canvas {
  max-height: 100%;
  max-width: 100%;
  margin: 50px 0px;
}

/*TABLET*/
@media (min-width: 768px) and (max-width: 991px) {
  .repo-cards {
    width: 45%;
  }
  .project-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-around;
  }
  canvas {
    max-width: 400px;
    max-height: 400px;
  }
  .chart-container {
    display: flex;
    justify-content: center;
  }
}

/* DESKTOP */
@media (min-width: 992px) {
  .repo-cards {
    width: 30%;
  }
  .project-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-around;
  }

  canvas {
    max-width: 500px;
    max-height: 500px;
  }
  .chart-container {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  h2 {
    text-align: left;
    margin-left: 30px;
  }
  h3 {
    text-align: left;
  }
  .user-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-content: center;
  }
  .user-information {
    flex-direction: column;
    margin-left: 50px;
    max-width: 300px;
  }
  .header-wrapper {
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
  }
  h1 {
    text-align: left;
    margin-left: 50px;
  }
  hr {
    height: 2px;
    width: 90%;
    border-style: solid #eab676;
    border-radius: 10px;
    background-color: #eab676;
    margin-bottom: 20px;
    justify-content: flex-start;
    align-self: flex-start;
  }
  :hover.repo-cards {
    box-shadow: 0px 0px 13px -2px #000000;
    transform: translateY(-2px);
  }
}
