* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #ffffff;
  padding: 10px, 10px;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  /* justify-items: center; */
  align-items: center;
  gap: 10px;
  font-family: "Source Sans Pro", sans-serif;
}

/* This part deals with the header section */

.user-section {
  width: 100%;
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.heading-main {
  font-weight: 700;
  font-size: 26px;
}

.user-image {
  width: 50%;
  border-radius: 50%;
  max-width: 250px;
}
.user-name {
  text-align: center;
  color: #6a7179;
}

/* This part deals with the project cards */
.projects-info {
  width: 100%;
  padding: 10px 60px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  column-gap: 10px;
}

.repo-card {
  width: 100%;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  border: 3px solid #e9ecef;
  border-radius: 10px;
}

.link {
  color: #0a5cd4;
  text-decoration: none;
  font-size: 22px;
}

.chart-canvas {
  width: 100%;
  display: flex;
  justify-content: center;
}
.chart-pie {
  width: 50%;
  max-width: 500px;
}

@media (min-width: 768px) {
  .projects-info {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1281px) {
  body {
    padding-top: 30px;
    flex-direction: row;
    align-items: flex-start;
  }
  .user-section {
    width: 20%;
  }
  .projects-info {
    width: 60%;
  }

  .chart-canvas {
    width: 20%;
  }
  .chart-pie {
    width: 100%;
  }
}
