/* MOBILE */

:root {
  box-sizing: border-box;
}

body {
  background: #efefef30;
  margin: 0;
  width: 100% fixed;
  font-family: "Heebo", sans-serif;
}

.main-content,
.projectContainer {
  margin: 0 16px 0 16px;
}

.navbar {
  background: #c0716a;
  display: flex;
  justify-content: center;
  padding: 16px;
}

.github-logo {
  width: 32px;
  display: flex;
  justify-content: center;
}

.profile-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  margin-top: 20px;
  align-items: center;
}

.full-name {
  font-weight: 400;
  font-size: 26px;
  line-height: 1.25;
  color: #1c1b1b;
  margin-block-end: 0;
  margin-block-start: 10px;
}

.username {
  font-weight: 200;
  font-size: 20px;
  color: #1c1b1b;
  margin-block-start: 7px;
}

.profile-picture {
  border-radius: 50%;
  height: 120px;
  width: 120px;
  margin-top: 15px;
  border: solid 2px rgba(27, 31, 36, 0.15);
}

.status-box {
  padding: 4px 0 4px 0;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  display: block;
  font-size: 16px;
  color: #57606a;
  padding: 8px;
  margin-bottom: 20px;
}

.status-text {
  margin-block-start: 0;
  margin-block-end: 0;
}

.presentation-text {
  color: #24292f;
  margin-top: 22px;
}

.header-project {
  font-size: 20px;
  color: #c0716a;
  text-transform: capitalize;
}

.chart-container {
  margin: 16px;
}

/* Footer styling */
footer {
  background: #c0716a;
  padding: 0.15rem;
  color: #24292f;
  text-align: center;
}

footer > p {
  margin-block-end: 0;
}

.footer-text {
  color: #f2e3e1;
  font-size: 18px;
  font-weight: 200;
  margin-block-end: 0;
}

.fa {
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
  color: #f2e3e1;
  padding: 0.3em;
  margin-block-end: 0;
}

.fa:hover {
  color: #ffffff;
}

.projectContainer {
  border: 1px solid #d0d7de;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 10px;
  background: #c0716a24;
}

.pullrequestStyle {
  font-weight: 600;
  color: #512d1eac;
  font-size: 15px;
}

.project-url {
  color: #c0716a;
  font-size: 15px;
}

/* TABLET */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .github-logo {
    width: 42px;
  }

  .profile-picture {
    height: 200px;
    width: 200px;
  }

  .full-name {
    font-size: 38px;
  }

  .username {
    font-size: 26px;
  }

  .status-box {
    font-size: 18px;
  }

  .header-project {
    font-size: 24px;
  }

  .project-url {
    font-size: 18px;
  }

  .presentation-text {
    font-size: 22px;
  }

  /* FLEX */

  .chart-parent {
    text-align: -webkit-center;
  }

  .chart-container {
    max-width: 80%;
  }

  .projectContainer {
    width: 40%;
  }

  .user-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .status-text {
    margin-block-start: 0;
    margin-block-end: 0;
    padding: 15px;
  }
}

/* DESKTOP */
@media (min-width: 1025px) {
  .profile-picture {
    height: 250px;
    width: 250px;
  }

  .status-box {
    font-size: 20px;
  }

  .status-text {
    padding: 15px;
  }

  .header-project {
    font-size: 24px;
  }

  .project-url {
    font-size: 18px;
  }

  .presentation-text {
    font-size: 22px;
  }

  .chart-parent {
    text-align: -webkit-center;
  }

  .chart-container {
    max-width: 60%;
  }

  .user-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .projectContainer {
    width: 25%;
  }
}
