:root {
  --bg-color: rgb(13,17,23);
  --primary-color: rgb(160,168,175);
}

body {
  font-family: Helvetica,Arial;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
}

.topnav{
  width: 100%;
  height: 100%;
  background-color: rgb(22,27,34);
  border: 2px solid transparent;
  color: var(--primary-color);
}

h1 {
  font-size: 40px;
  text-align: center;
}

.user-info {
  margin: 40px 0;
}

.picture {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.user-picture {
  width: 250px;
  border-radius: 50%;
  margin: 20px 0px;
}

.user-information {
  color: var(--primary-color);
}

.user-information a {
  text-decoration: none;
  color: rgb(42, 78, 98);
  font-weight: bold;
  font-size: 20px;
  text-align: left;
}

.projects {
  display: grid;
  justify-content: center;
}

.repo-title {
  font-size: 25px;
  font-weight: 400;
  color: var(--primary-color);
  margin: 0;
  padding-left: 12px;
}

.project {
  display: flex;
  justify-content: space-between;
  border: 1px solid rgb(156, 155, 155);
  color: var(--primary-color);
  padding: 10px;
  border-radius: 10px;
  
  width: 420px;
  margin-top: 20px;
}

p {
  font-size: 18px;
}
.chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  text-align: center;
}

.project a {
  text-decoration: none;
  color: rgb(42, 78, 98);
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  margin-top: 10px;
  margin-left: 10px;
}

.language {
  margin: 0;
  margin-left: 10px;
  padding: 5px o;
}
#branch {
  border: 1px solid black;
  border-radius: 25px;
  margin-top: 10px;
  padding: 6px;
  margin-right: 10px;
  line-height: 12px;
  border-color: grey;
}

.repo-info {
  margin-top: 10px;
}

.repo-details {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.push {
  font-style: italic;
  text-align: left;
  font-size: 16px;
  margin-top: 10px;
  margin-left: 10px;
}

.progress {
  display: flex;
  width: 100%;
  margin-left: 10px;
  padding-bottom: 10px;
}

.language-html {
  height: 10px;
  border-radius: 5px 0 0 5px;
  background-color: #4a24f1;
}

.language-css {
  height: 10px;
  background-color: #71ce71;
}

.language-js {
  height: 10px;
  border-radius: 0 5px 5px 0;
  background-color: #3dabcc;
}

.chartdiv {
  width: 400px;
  margin: 40px 0;
}

.line {
  display: none;
}

@media only screen and (min-width: 1200px) {
  .wrapper {
    display: flex;
    justify-content: space-around;
  }

  .projects {
    grid-template-columns: auto auto;
    grid-column-gap: 20px;

  }

  .repo-title {
    padding-top: 55px;
  }

  .projects :first-child {
    grid-column: 1 / -1;
  }

  .chartdiv {
    margin: 0
  }

  .line {
    display: block;
    width: 90%;
    height: 0.2px;
    color: var(--primary-color);
    margin: 80px auto;
    text-align: right;
  }
}