/* fonts&global*/

.ledger-regular {
  font-family: "Ledger", serif;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  color: black;
}


.cta {
  color: #228B22;
}

.cta:hover {
  text-decoration: underline;
}

/* nav */

.border-gradient {
  border: 10px solid;
  border-image-slice: 2;
  border-width: 5px;
}

.only-bottom {
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.border-gradient-desgin {
  /* border-image-source: linear-gradient(346deg, rgba(164, 189, 143, 1) 13%, rgba(158, 70, 52, 1) 48%, rgba(46, 46, 191, 1) 73%); */
  /* border-image-source: radial-gradient(circle,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 74%); */
  border-image-source: radial-gradient(circle, rgba(155, 134, 42, 1) 0%, rgba(34, 139, 34, 1) 50%, rgba(237, 221, 83, 1) 100%);

}

.nav-menu {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 1rem;

}

.name {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}

/* Extracurricular colors */
.red {
  color: indianred;
}

.green {
  color: darkolivegreen;
}

.blue {
  color: cadetblue;
}

.goldenrod {
  color: goldenrod;
}

.pink {
  color: pink;
}

.blueish {
  color: steelblue;
}



/* hero */

.hero {
  min-height: 100vh;
}

.btn-outline-info {
  --bs-btn-color: #228B22;
  --bs-btn-border-color: #228B22;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #228B22;
  --bs-btn-hover-border-color: #228B22;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #fff: #fff;
  --bs-btn-active-bg: #228B22;
  --bs-btn-active-border-color: #228B22;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6e846f;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6e846f;
  --bs-gradient: none;
}

.alignment {
  text-align: start;
}


/* Projects */

.p-align {
  display: flex;
  justify-content: start;
}

.project-img {
  height: 45dvh;
  max-width: 80dvh
}


/* Reviews */
.review-card {
  height: 35dvh;
}

/* Services */

.services {
  min-height: 45dvh;
}


/* Process */

.img-quote {
  height: 80dvh;
  object-fit: contain;
  object-position: center;
}


/* extra */

.book-img {
  height: 65dvh;
}



/* Scrolling stuff
.scroller {
  max-width: 600px;
  outline: 3px solid lime;

}

.scroller-inner {
  padding-block: 1rem;
  flex-wrap: wrap;
  display: flex;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller-inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll 20s linear infinite;
}


@keyframes scroll {
  to {
    transform: translate(calc(-45% - 1rem));
  }
} */

@media screen AND (max-width: 768px) {

  /* nav */

  .nav-menu {
    font-size: 18px;
    margin: 0.5rem;
    display: block;
    text-align: center;
  }

  .name {
    font-size: 27px;
    font-weight: bold;
  }


  /* hero */

  .alignment {
    text-align: center;
  }

  /* Projects */

  .p-align {
    justify-content: center;
  }

  .project-img {
    height: 30dvh;
    max-width: 54dvh;
  }

  /* Review */
  .review-card {
    height: fit-content;
  }

  /* Process */
  .img-quote {
    height: 65dvh;
  }

  /* Extra */
  .book-img {
    height: 45dvh;
  }

}


@media screen AND (max-width: 431px) {

  /* nav */

  .nav-menu {
    font-size: 18px;
    margin: 0.5rem;
    display: block;
    text-align: center;
  }

  .name {
    font-size: 27px;
    font-weight: bold;
  }


  /* hero */

  .alignment {
    text-align: center;
  }

  /* Projects */

  .p-align {
    justify-content: center;
  }

  .project-img {
    height: 25dvh;
    max-width: 35dvh;
  }

  /* Services */

  .coding {
    display: block;
  }

  .drag-drop {
    display: block;
  }

  /* Reviews */

  .review-card {
    height: fit-content;
  }

  /* Process */
  .img-quote {
    height: 45dvh;
  }

}