body {
  background: #10141a;
  margin: 0;
  padding: 0;
  min-width: 450px;
  color: #eeeeee;
  font-family: "Nixie One", cursive;
}

header {
  font-size: 30px;
  margin-left: 30px;
  color: #58a6ff;
  font-family: Arial, Helvetica, sans-serif;
}

.repo-chart {
  width: 50%;
  margin: auto;
  padding: 20px;
}

/* ----- USER INFORMATION SECTION -----*/
.user-info-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #eeeeee;
  margin: auto;
}

/* one comes from script file  */
.user-information-container {
  margin: auto 10px;
  text-align: center;
}

.user-picture {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: solid 1px #434343;
  margin: 20px auto;
}

.user-info-name {
  font-size: 20px;
  text-decoration: none;
  color: #eeeeee;
  font-weight: bold;
}

.user-info-name:hover {
  color: #58a6ff;
}
.user-info-bio {
  font-size: 18px;
  text-decoration: none;
}

/* ----- PROJECT CARDS SECTION -----*/
.projects-title {
  font-size: 30px;
  margin: auto;
  padding: 10px 10px 30px 10px;
  width: 80%;
  max-width: 700px;
  text-align: center;
}

#projects {
  margin: auto;
  display: flex;
  flex-direction: column;
  width: 80%;
}

.project-card {
  font-size: 16px;
  border: solid 1px rgb(78, 78, 80);
  border-radius: 10px;
  margin: 5px 10px;
  padding: 10px;
  max-width: 600px;
  background-color: #151a22;
}

.project-names-with-pr {
  display: flex;
  color: #58a6ff;
  text-decoration: none;
  font-size: 22px;
  padding-bottom: 10px;
  font-family: "Recursive", sans-serif;
}

.project-names-with-pr:hover {
  text-decoration: underline;
}

.view-live {
  font-family: "Recursive", sans-serif;
  text-decoration: none;
  font-size: 16px;
  color: #44c39abf;
}
.view-live:hover {
  color: #eeeeee;
}

.repo-language {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid;
}

/* ----- FOOTER SECTION ----- */
.fa {
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
  color: #58a6ff;
}

footer {
  bottom: 0;
  width: 100%;
  background-color: #151a22;
  color: #eeeeee;
  text-align: center;
  padding: 10px 0 10px 0;
  margin-top: 100px;
}

.footer-text {
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 18px;
}

.technigo {
  text-decoration: none;
  color: orange;
}

.technigo:hover {
  color: blue;
}

@media (min-width: 768px) {
  #projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    justify-self: center;
    margin: 10px;
    width: auto;
  }
  .project-card {
    border: 2px solid #eeeeee;
    border-radius: 10px;
    grid-column: span 1;
    font-size: 16px;
    padding: 30px;
    width: 80%;
    min-width: 220px;
    justify-content: space-between;
    margin: 0 auto;
    border: 1px solid #393e46;
  }

  .repo-chart {
    width: 30%;
    margin: auto;
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .main {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    max-width: 1300px;
  }
  .right-section {
    padding: 20px 0 0 0;
    margin-top: 1.5rem;
    margin: 0 auto;
    min-width: 30%;
  }

  .left-section {
    width: 100%;
    align-content: flex-start;
  }

  .user-info-container {
    display: flex;
    flex-direction: column;
    margin: 20px;
    align-items: center;
  }
  .user-picture {
    width: 200px;
    height: 200px;
    max-width: 80%;
    max-height: 80%;
    border-radius: 50%;
    border: solid 1px #434343;
    margin: 20px;
  }

  .user-info-name {
    font-size: 24px;
    text-decoration: none;
    color: #eeeeee;
    font-weight: bold;
    text-align: center;
  }

  .user-info-bio {
    font-size: 18px;
    text-decoration: none;
  }

  .repo-chart {
    width: 80%;
    margin: auto;
    padding: 20px;
  }
}
