body {
  background: #f7faf1;
  font-family: 'Baloo Chettan 2', cursive;
}

.topbar {
  background-color: white;
  width: 100vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.title {
  color: #FFECE9;
  font-weight: bold;
  font-size: 70px;
  text-align: center;
}

.github-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #FFECE9;
  background-color:#FFECE9;
  align-self: center;
  margin: 20px;
}

.info-chart-box {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 50px;
}

.user-name {
  text-align: center;
}

.profile-pic {
  width: 400px;
  border-radius: 50%;
  opacity: 0.5;
}

.profile-pic:hover {
  opacity: 1;
  transition: 1s;
}

.chart-box {
  width: 400px;
  padding: 20px;
}

.project-container {
  background-color: white;
  padding: 20px 20px 60px 20px;
}

.project-title {
  text-align: center;
  font-size: 30px;
  padding-top: 15px;
  padding-bottom: 20px;
}

.github-project {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 20px;
}

.project-card {
  font-family: 'Quicksand', sans-serif;
  background-color: #f7faf1;
  width: 330px;
  padding: 15px;
  border-radius: 2%;
  border: 2px solid rgb(220, 220, 220);
}

.project-card:hover {
  background-color: #FFECE9;
}

.project-name {
  font-size: 30px;
  color: white;
  text-shadow: 1px 1px 1px #000000;
  margin-top: 10px;
  text-transform: capitalize;;
}

.project-info {
  margin: 2px;
  font-size: 15px;
}

.project-links {
  color: black;
  font-size: 20px;
}

.footer {
  height: 100px;
  background-color: #f7faf1;
  align-items: right;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.linkedin-link {
  color: rgb(201, 200, 200);
  text-decoration: none;
  text-align: right;
  margin: 35px 20px;
  font-style: italic;
}
  
.linkedin-link:hover {
  color: rgb(123, 122, 122);
  font-size: 20px;
  transition: 1s;
}

 /* Tablet */
@media (min-width:768px) {

  .info-chart-box {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
  }
  
  .github-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop */
@media (min-width: 1192px) {

  .info-chart-box {
    width: 1250px; 
  }

  .github-project {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 1190px;
  }

}