body {
  background: white;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

header{
  background: pink;
}

.hero{
  background-image: url(./img/susan-wilkinson-SjhL-Zrol6A-unsplash.jpg) ;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  height: 300px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user-data-wrapper{
  height: 200px;
  text-align: center;
  color: #f5f3f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.user-data-wrapper p{
  font-size: smaller;
  margin: 0;
  padding: 0;
}

.user-data-wrapper h1{
  margin-bottom: 0;
}

.img-wrapper{
display: flex;
justify-content: center;
align-self: flex-end;
position: absolute;
top: 200px;
}

img{
  border-radius: 50%;
  height: 150px;
  filter: saturate(70%);
  filter: grayscale(50%);
  align-self: flex-end;
}

.project-wrapper{
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
margin-top: 25%;
margin-bottom: 25%;
}

.repo-card{
  height: 40vh;
  width: 80vw;
  background-color: #f5f3f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.repo-card a {
  text-decoration: none;
  color: black;

}

.chart-box{
  display: flex;
  justify-content: center;
}



footer{
  font-size: small;
  background-color: #f5f3f0;
  color: gray;
  width: 100%;
  height: 10vh;
  margin: 0%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 25%;
}

@media (min-width: 768px) and (orientaion: landscape) {
  .hero{
  height: 400px;
  }

  .img-wrapper{
    top: 300px;
  }

  img{
    height: 200px;
  }
  .project-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25%;
  }

  .repo-card{
    height: 20vh;
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: solid;
  }
}

.repo-card h3{
  margin-bottom: 10px;
}
.repo-card p{
  margin: 2px;
}

@media (min-width: 992px){
  .project-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25%;
  }

  .repo-card{
    height: 45vh;
    width: 30vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  
  }

  img{
    height: 300px;
  }

}



