body,
html {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* background: linear-gradient(
    -90deg,
    #f6f7eb,
    #e1ffe5,
    #fbf3ff,
    #fff9f3,
    #f3f7ff
  );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite; */
  background-color: #f6f7eb;
  color: #26532b;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.5;
  width: 100%;
}
/* 
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
/* 

* {
  border: 1px solid red !important;
}
*/
/* .bg-color-anim {
  position: absolute;

  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, #d8ffd8, #fff6e9, #f6f7eb, #f6f7eb);
  background-size: 200% 200%;
  background-position: 0% 100%;
  animation-name: gradient;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
} */

/* @keyframes gradient {
  from {
    background-position: 0% 100%;
  }
  to {
    background-position: 100% 0%;
  }
} */

a {
  text-decoration: none;
}

img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  box-shadow: 10px 10px 31px -16px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 10px 10px 31px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 31px -16px rgba(0, 0, 0, 0.75);
}

iframe {
  padding: 20px 0;
}

/* nav */

nav {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 20px;
}

.bg-green {
  background-color: #26532b;
  color: #f6f7eb;
  margin: 0px;
}

.navbar-brand {
  color: #26532b;
  font-weight: bold;
  font-size: 30px;
}

.nav-link {
  color: #26532b;
  font-size: 24px;
}

.navbar-brand:hover,
.nav-link:hover {
  color: brown;
}

.nav-color-text-2 {
  color: #f6f7eb;
}

.navbar-toggler {
  border: none;
  font-size: 30px;
}

i.fa-solid.fa-bars.fa-color {
  color: #f6f7eb;
}

/* intro */

.intro-img {
  border-radius: 200px 200px 0 0;
  margin: 10px 0;
}

.intro-img img {
  display: none;
}

.intro-content {
  margin: 50px 0;
}

/* text-sizing */

.bigger-text {
  font-weight: bolder;
  font-size: 100px;
}

.big-text {
  font-weight: bold;
  font-size: 60px;
}

.small-text,
.desc-text {
  font-size: 22px;
}

.medium-text {
  margin: 10px 0;
  font-size: 35px;
  font-weight: bold;
}

.desc-text {
  margin: 10px 0;
}

.bigger-text {
  font-size: 128px;
  font-weight: bold;
}

.not-so-big-text {
  font-size: 48px;
  font-weight: bold;
  margin: 10px 0;
}

/*div sizing*/

section {
  padding: 70px 0;
}

.hero {
  margin: 50px 0;
}

.content {
  margin: 85px 0;
}

/*btns*/

.hero-btns {
  /* display: flex;
    justify-content: center; */
  margin: 31px 0;
}

.contact-btn {
  text-align: center;
  padding: 73px 0;
}

.btns {
  background-color: #26532b;
  width: 185px;
  padding: 16px 35px;
  color: #f6f7eb;
  text-align: center;
  font-weight: bold;
  border-radius: 14px;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.btns:hover {
  transition: 0.3s;
  background-color: brown;
}

/* border */

.border-custom {
  border: 1px solid;
}

/* ul li */

ul {
  display: flex;
  list-style: none;
  padding: 0px;
  justify-content: center;
}

li {
  margin-right: 10px;
}

ul.project-pill-stack {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0px;
  margin: 10px 0;
  justify-content: left;
}
.project-pill-stack li {
  font-weight: bold;
  border: 3px solid #26532b;
  border-radius: 14px;
  padding: 5px;
  margin-right: 10px;
  margin-top: 10px;
  font-size: 17px;
}

/* projects */

.project-content {
  margin: 20px 0px;
}

.project-title {
  margin: 28px 0;
  font-size: 24px;
  font-weight: 600;
}

.project-desc {
  padding: 20px 0;
  font-size: 25px;
}

.project-desc p {
  padding: 10px 0;
  margin: 0px;
}

.visit-project-link {
  margin: 30px 0;
}

.visit-project-link a {
  font-size: 15px;
  border-radius: 14px;
  padding: 16px 35px;
  color: #f6f7eb;
  font-weight: bold;
  background-color: #26532b;
}

/* about */

.col-lg-8.col-md-12.col-sm-12.aos-init.aos-animate {
  margin: auto;
}

/* .about-content {
  margin: 35px 0;
} */

.about-img {
  margin: 10px 0;
  border-radius: 200px 200px 0 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  box-shadow: 10px 10px 31px -16px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 10px 10px 31px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 31px -16px rgba(0, 0, 0, 0.75);
}

.about-img img {
  display: none;
}

/* contact */

.contact-me-btn {
  margin: 33px 0;
  padding: 20px 0;
}

.contact-btn-circle {
  border: 3px solid;
  border-radius: 50%;
  padding: 50px;
  text-decoration: none;
  color: #26532b;
  transition: 0.3s;
}

.contact-btn-circle:hover {
  color: #f6f7eb;
  background-color: brown;
}

/* footer */

footer {
  background-color: #29372a;
  color: #f6f7eb;
  padding: 20px;
}

footer a {
  color: #f6f7eb;
  font-size: 30px;
  padding: 0 20px;
  transition: 0.3s;
}

footer a:hover {
  color: brown;
}

/*media query*/

@media (max-width: 680px), screen and (orientation: portrait) {
  section {
    padding: 0 16px;
  }

  .hero {
    margin: 60px 0;
  }

  /* text-sizing */

  .big-text {
    font-weight: bold;
    font-size: 35px;
    margin: 28px 0;
  }

  .small-text,
  .desc-text {
    font-size: 18px;
  }

  .medium-text {
    margin: 10px 0;
    font-size: 25px;
  }

  .desc-text {
    margin: 10px 0;
  }

  .bigger-text {
    margin: 28px 0;
    font-size: 70px;
  }

  .not-so-big-text {
    font-size: 35px;
    font-weight: bold;
    margin: 50px 0;
  }

  /* projects */

  .project-content {
    margin: 20px 0px;
  }

  .project-title {
    margin: 28px 0;
  }

  .project-desc {
    font-size: 18px;
  }

  .visit-project-link {
    margin: 30px 0;
  }

  .visit-project-link a {
    border-radius: 14px;
    padding: 16px 35px;
    color: #f6f7eb;
    background-color: #26532b;
  }

  /* about */

  .about-desc {
    margin: 20px 0;
  }

  .about-content {
    margin-top: 0px;
  }

  .about-img img {
    display: block;
  }

  /* ul li*/
  .project-pill-stack li {
    font-weight: bold;
    border-radius: 14px;
    padding: 5px;
    margin-right: 10px;
    font-size: 17px;
  }

  /*img*/
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .project-img img,
  .about-img img {
    margin: 0px;
  }

  /*nav*/

  nav {
    background-color: #26532b;
    color: #f6f7eb;
    margin: 0px;
  }

  a.navbar-brand {
    color: #f6f7eb;
    font-weight: bold;
    font-size: 30px;
  }

  a.nav-link {
    color: #f6f7eb;
    font-size: 24px;
  }

  /* intro */

  .intro-img {
    background-image: url(/img/me.png);
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .intro-img img {
    display: block;
  }

  .fa-color {
    color: #f6f7eb;
  }
}

/* @media (min-width: 992px)
 {
nav {
    background-color: none;
}
} */
