.herobanner {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 70px 25px 40px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.herobanner .logo {
  width: 40vw;
  height: 40vw;
  max-width: 250px;
  max-height: 250px;
  margin-bottom: 20px;
}
.herobanner h1 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}
.herobanner p {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}
.herobanner .btn-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

#about .intro {
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0 50px 0;
}
#about .intro p {
  line-height: 1.5em;
}

#projects .project {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
#projects .project a {
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin: 10px;
}
#projects .project a .img {
  height: 25vmin;
  width: 25vmin;
  background-color: #000;
  border: 5px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
#projects .project a .img i {
  color: #fff;
  font-size: 8vmin;
}
#projects .project a:hover .img {
  background-color: #fff;
  border: 5px solid #000;
}
#projects .project a:hover .img i {
  color: #000;
}
#projects .project a:hover p {
  color: rgba(0, 0, 0, 0.6);
}

@media only screen and (max-width: 800px) {
  #prject .project {
    flex-direction: column;
  }
}
#contact .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contact .container div {
  padding: 40px 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}/*# sourceMappingURL=home.css.map */