@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

body {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f0f8ff ,#c8f3f3);
  color: darkslategray;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
}

.container {
  margin: auto 5rem;
  width: 60vw;
}

.header-main {
  margin: 5rem auto;
  text-align: center;
  margin-bottom: 0;
}

.header-main__heading {
  font-size: 3rem;
}

.header-main__secondary-heading {
  margin-top: 2rem;
}

.header-main__cta {
  text-decoration: none;
  cursor: pointer;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid darkslategray;
  color: inherit;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.header-main__cta:hover {
  background-color: #89E8E8;
  border-color: #89E8E8;
  transition: ease-in;
  transition-duration: 300ms;
}

.header-main__cta__text {
  display: inline-block;
}

.header-main__portrait {
  width: 50%;
  height: auto;
  border-radius: 50%;
}

.portfolio-links {
  text-align: center;
  margin: 4px auto;
}

.portfolio-links a {
  text-decoration: none;
  color: inherit;
}

.portfolio-links__icon {
  font-size: 2rem;
  display: inline;
}

.projects__item {
  margin: 5rem auto;
  margin-top: 2rem;
  display: flex;
}

.projects__item__img {
  flex: 2;
}

.projects__item__img img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.projects__item__content {
  flex: 3;
  padding-left: 1rem;
}

.projects__item__content a {
  text-decoration: none;
  color: blueviolet;
}

@media screen and (max-width: 1000px) {

  .projects__item, .projects__item__img, .projects__item__content {
    display: block;
  }

  .projects__item__content {
    padding: 0;
  }

  .header-main__heading {
    font-size: 2rem;
  }

  .container {
    width: 80vw;
  }

}

.body__heading {
  text-align: center;
  margin-top: 5rem;
}

.projects__container__list {
  list-style-type: none;
  padding: 0;
}

.tech-stack {
  text-align: center;
  margin: auto 1rem;
}

.tech-stack__list {
  margin: 1rem auto;
  list-style-type: none;
  font-size: 2rem;
  padding: 0;
}

.tech-stack__list li {
  display: inline;
}

#html {
  color: #F06529 ;
}

#css {
  color: #2965f1  ;
}

#javascript {
  color: #F0DB4F;
}

#firebase {
  color: #FFA611;
}

.bi-github {
  color: #171515;
}

.bi-behance {
  color: #053EFF;
}

.bi-dribbble {
  color: #ea4c89;
}

.bi-linkedin {
  color: #0e76a8;
}

.back-to-top {
  display: block;
  text-align: center;
  color: blueviolet;
  margin: 1rem auto;
}