*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Custom Properties */

:root {
  --ff-primary: "Source Sans 3", sans-serif;
  --ff-secondary: "Source Code Pro", monospace;

  --fw-light: 300;
  --fw-reg: 400;
  --fw-bold: 600;
  --fw-black: 900;

  --clr-light: #f8f7f0;
  --clr-dark: #2e3532;
  /*--clr-accent:#F9AA33;*/
  --clr-accent: #ef9e25;
  --clr-accent-secondary: #720e07;
  --clr-project-one: #41544d;
  --clr-project-two: #6b216e;

  --fs-h1: 3rem;
  --fs-h2: 3rem;
  --fs-navLink: 2.25rem;
  --fs-h3: 1.5rem;
  --fs-project: 2rem;
  --fs-subtitle: 1.25rem;
  --fs-pillText: 1.1rem;
  --fs-body: 1rem;

  --bs: 0.25em 0.25em 0.75em rgba(0, 0, 0, 0.25), 0.125em 0.125em 0.25em rgba(0, 0, 0, 0.15);

  --custom-section-max-width: 1000px;
  --section-max-width: 1350px;
}

@media (min-width: 500px) {
  :root {
    --fs-h2: 5rem;
  }
}
@media (min-width: 600px) {
  :root {
    --fs-h2: 6rem;
  }
}

@media (min-width: 800px) {
  :root {
    --fs-h1: 4.5rem;
    --fs-h2: 8rem;
    --fs-navLink: 3.75rem;

    --fs-h3: 2.5rem;
    --fs-project: 2.5rem;
    --fs-subtitle: 1.5rem;
    --fs-pillText: 1.25rem;
    --fs-body: 1.125rem;
  }
}
@media (min-width: 900px) {
  :root {
    --fs-h2: 9rem;
    --fs-project: 3.25rem;
  }
}
@media (min-width: 1096px) {
  :root {
    --fs-h2: 10rem;
    --fs-project: 4rem;
  }
}
@media (min-width: 1350px) {
  :root {
    /* --fs-h2: 14rem; */
    --fs-project: 5rem;
  }
}

/* General styles */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--clr-light);
  color: var(--clr-dark);
  margin: 0;
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: var(--fw-reg);
}

section {
  padding: 6em 2em;
}

img {
  display: block;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

strong {
  font-weight: var(--fw-black);
}

:focus,
button:focus-visible {
  outline: 3px solid var(--clr-accent);
  outline-offset: 3px;
}

/* buttons */
a {
  text-decoration: none;
  color: var(--clr-dark);
}
a[role="button"]:hover {
  cursor: pointer;
}
a.disabled {
  pointer-events: none;
  cursor: default;
}
button,
input[type="submit"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.btn {
  display: inline-block;
  visibility: visible;
  padding: 1em 2.5em;
  background: var(--clr-dark);
  color: var(--clr-light);
  text-decoration: none;
  cursor: pointer;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--fw-black);
  transition: transform 200ms ease-in-out;
  box-shadow: none;
  text-align: center;
  border: 4px outset transparent;
}
.btn-light {
  background: var(--clr-light);
  color: var(--clr-dark);
}
.btn-ghost {
  background: var(--clr-light);
  color: var(--clr-dark);
  border-color: var(--clr-dark);
}

.btn:hover {
  transform: scale(1.1);
  box-shadow: var(--bs);
}

.btn-disabled {
  opacity: 0.8;
}
.btn:hover {
  transform: none;
  box-shadow: none;
  cursor: default;
}
/* descriptive pill */
.subtitle__pill {
  text-transform: capitalize;
  font-weight: var(--fw-light);
  font-size: var(--fs-pillText);
  padding: 8px 16px;
  border: 1px solid var(--clr-accent-secondary);
  border-radius: 50px;
  width: fit-content;
  margin: 0;
}
/* Typography */

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: var(--fs-h1);
}
h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-black);
}
h3 {
  font-size: var(--fs-h3);
}

.section__title {
  margin-bottom: 0.25em;
  font-size: var(--fs-h2);
  letter-spacing: 10%;
  text-align: center;
  text-transform: uppercase;
  /* margin-left: -2rem; */
}
.section__title::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  margin: 0.5rem auto;
  background: var(--clr-accent);
}

@media (min-width: 600px) {
  .section__title {
    text-align: left;
    margin-left: -1rem;
  }
  .section__title::after {
    content: "";
    display: block;
    width: 40%;
    max-width: var(--custom-section-max-width);
    height: 4px;
    margin-left: -2.5rem;
    background: var(--clr-accent);
  }
}

.section__title--intro {
  font-size: var(--fs-h1);
  font-weight: var(--fw-light);
  align-self: end;
}

.section__title--intro strong {
  display: block;
}

.section__subtitle {
  margin: 0;
  font-size: var(--fs-subtitle);
  font-weight: var(--fw-reg);
}

.section__subtitle--intro,
.section__subtitle--about {
  background: var(--clr-accent);
  padding: 0.25em 1em;
  font-family: var(--ff-secondary);
  margin-bottom: 1em;
  width: 100%;
}

.section__subtitle--work {
  color: var(--clr-dark);
  font-weight: var(--fw-black);
  margin-bottom: 2em;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  position: relative;
}

.nav {
  position: fixed;
  background: var(--clr-light);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 250ms cubic-bezier(0.5, 0, 0.5, 1);
}

.nav__list {
  list-style: none;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: inherit;
  font-weight: var(--fw-black);
  font-size: var(--fs-navLink);
  text-decoration: none;
}

.nav__link:hover {
  color: var(--clr-accent-secondary);
}

.nav__btn {
  width: 100%;
  height: 4em;
  position: fixed;
  top: 0;
  right: 0;
  background: var(--clr-light);
  z-index: 150;
}

.logo {
  position: fixed;
  z-index: 170;
  font-size: var(--fs-subtitle);
  display: flex;
}

.nav-toggle {
  padding: 0.75em;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: fixed;
  right: 1em;
  top: 1em;
  z-index: 150;
}

.nav-open .nav {
  transform: translateX(0);
}

.nav-open .nav-toggle {
  position: fixed;
}

.nav-open .hamburger {
  transform: rotate(0.625turn);
}

.nav-open .hamburger::before {
  transform: rotate(90deg) translateX(-6px);
}

.nav-open .hamburger::after {
  opacity: 0;
}

.hamburger {
  display: block;
  position: relative;
  background: var(--clr-light);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  background: var(--clr-dark);
  width: 2em;
  height: 3px;
  border-radius: 5em;
  transition: transform 250ms ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.hamburger::before {
  top: 6px;
}
.hamburger::after {
  bottom: 6px;
}

/* Intro section */

.intro {
  position: relative;
  visibility: hidden;
}

.intro__img {
  box-shadow: var(--bs);
  margin-bottom: 1.5em;
}

.section__subtitle--intro {
  display: inline-block;
}

.section__cta--intro {
  grid-area: btn;
  margin: 3em 0;
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}

@media (min-width: 600px) {
  .intro {
    display: grid;
    width: fit-content;
    margin: 4.5em auto;
    column-gap: 2em;
    grid-template-areas:
      "img title"
      "img subtitle"
      "cta cta";
    grid-template-columns: min-content auto;
    /* width: 100%; */
  }

  .intro__img {
    grid-area: img;
    min-width: 250px;
  }

  .section__cta--intro {
    grid-area: cta;
    max-width: fit-content;
    margin: 4em auto 0;
    flex-direction: row;
    gap: 4em;
  }

  .section__subtitle--intro {
    align-self: start;
    grid-column: -1 / 1;
    grid-row: 2;
    text-align: right;
    position: relative;
    left: -1.5em;
    width: calc(100% + 1.5em);
    padding-left: calc(250px + 3em);
    text-wrap: wrap;
  }
}

/* My work */

.my-work {
  background-color: var(--clr-light);
  background-size: cover;
}

.my-work__project {
  padding: 1.5em 0;
  display: flex;
  flex-direction: column;
  grid-gap: 1.5em;
  position: relative;
  text-align: left;
  max-width: var(--section-max-width);
  margin: 0 auto 4em;
}

.my-work__project__title {
  font-weight: var(--fw-reg);
  font-size: var(--fs-project);
  letter-spacing: 15%;
  text-transform: uppercase;
  margin-bottom: 0;
}

.my-work__project__subtitle {
  grid-area: subtitle;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.my-work__project__img__container {
  position: relative;
  align-self: center;
  width: 100%;
  min-height: 30vh;
  display: flex;
  grid-area: thumbnail;
}

.my-work__project__img__container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* transition: transform 750ms cubic-bezier(0.5, 0, 0.5, 1), opacity 250ms linear; */
}

.my-work__project__img {
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  align-self: center;
  cursor: pointer;

  /* transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg)
    skew(0deg);
  transform-style: preserve-3d; */
  transition:
    transform 750ms cubic-bezier(0.5, 0, 0.5, 1),
    opacity 250ms linear;
}
.my-work__project__img:hover {
  transform: scale(1.1);
}

.my-work__project__img--disabled:hover {
  cursor: default;
  /* transform: none; */
}
.my-work__project__description {
  text-align: left;
  grid-area: description;
}

.my-work__project__description .btn {
  margin: 0.5em 0 0;
}

/* LEFT aligned */

.project-left-aligned {
  .my-work__project__img__container::before {
    background-color: var(--clr-project-one);
    height: 100%;
    width: 70%;
    left: 15%;
  }
  .my-work__project__img {
    margin-top: 2em;
  }
}
/* RIGHT aligned */
.project-right-aligned {
  .my-work__project__img__container {
    position: relative;
    height: fit-content;
    display: flex;
  }
  .my-work__project__img__container::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 65%;
    background: var(--clr-project-two);
    left: 0;
    top: 15%;
  }
  .my-work__project__img {
    width: 80%;
    margin: 0 auto;
  }
}

@media (min-width: 350px) {
  .my-work__project__img__container {
    min-height: 40vh;
  }
}
@media (min-width: 480px) {
  .my-work__project__img__container {
    min-height: 50vh;
  }
}
@media (min-width: 900px) {
  .my-work__project {
    display: grid;
    grid-template-columns: 55% 1fr;
    grid-template-rows: auto minmax(min-content, 120px) auto;
    grid-column-gap: 3em;
    grid-template-areas:
      "title     title      "
      "thumbnail  subtitle   "
      "thumbnail description";
    .btn {
      margin: 1.75em 0;
    }
  }

  .my-work__project__title {
    justify-self: end;
    align-self: end;
    text-align: right;
    grid-column: 1/-1;
    max-width: 65%;
  }

  .my-work__project__subtitle {
    align-self: center;
  }
  .my-work__project__description {
    max-width: 54ch;
  }

  .my-work__project__img__container {
    height: 100%;
    justify-self: center;
  }

  /* .my-work__project__img {
    max-height: 90%;
  } */

  .my-work__project__description {
    align-self: start;
  }

  .project-left-aligned {
    .my-work__project__img {
      margin: 0;
    }
    .my-work__project__img__container::before {
      width: 60%;
      height: 130%;
      left: 18%;
      top: -20%;
    }
  }

  .project-right-aligned {
    grid-template-areas:
      "title     thumbnail  "
      "subtitle  thumbnail  "
      "description thumbnail";
    grid-template-columns: 1fr 55%;

    .my-work__project__title {
      text-align: left;
      justify-self: start;
      grid-column: 1/1;
    }

    .my-work__project__img__container {
      width: 100%;
      justify-self: center;
      height: 120vh;
    }
    .my-work__project__img__container::before {
      height: 55%;
      top: 28%;
    }

    .my-work__project__img {
      width: auto;
      height: 100%;
    }
  }
}

/* .img:active,
.img:focus,
.img:hover {
  transform: scale(1.1);
} */
/* transition: transform 750ms cubic-bezier(0.5, 0, 0.5, 1), opacity 250ms linear; */

/* My services section */

.my-services {
  background-color: var(--clr-dark);
  color: var(--clr-light);
  text-align: left;
}

.section__title--services {
  position: relative;
}

.services {
  margin: 4em auto;
  width: 100%;
  max-width: var(--section-max-width);
  display: grid;
  gap: 4rem;
  justify-items: start;
}

.service {
  width: calc(100% - 1.5em);
  padding: 2em 1.5em;
  background-color: var(--clr-light);
  color: var(--clr-dark);
  box-shadow: 1.5em 1.5em var(--clr-accent);
}

.service__title {
  line-height: 1.2;
  letter-spacing: 5%;
  font-weight: var(--fw-reg);
}
.service__title--wrapped {
  display: none;
}

@media (min-width: 800px) {
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service {
    padding: 2.5em 2em;
  }
  .service:last-child {
    grid-column: 1/-1;
  }

  .service:first-child > .service__title:first-child {
    display: none;
  }
  .service__title--wrapped {
    display: unset;
  }
}
@media (min-width: 1240px) {
  .services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service:last-child {
    grid-column: 3/-1;
  }
}

/* About section*/
.section__grid,
.section__subsection--skills {
  max-width: var(--custom-section-max-width);
  margin: 0 auto;
}

.about__img {
  box-shadow: var(--bs);
  min-width: 300px;
}

.section__subtitle--about {
  margin: 1.5em 0 1em;
}

.section__subsection--skills {
  margin: 4em auto;
}

.subsection__item__title {
  font-weight: var(--fw-bold);
}

.about-me__body {
  max-width: 70ch;
}

.subsection__item__list {
  list-style: none;
  padding: 1.5em 0;
  margin: 0;
  display: flex;
  gap: 0.5em;
  width: 100%;
  flex-wrap: wrap;
}
.subsection__item__logo {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.subsection__item__list--certificate {
  display: flex;
  gap: 1em;
  align-items: flex-start;
  font-size: var(--fs-subtitle);
  margin-bottom: 0.5em;
  p {
    margin: 0;
  }
}

@media (min-width: 600px) {
  .section__grid {
    display: grid;
    grid-template-columns: auto min-content;
    grid-template-areas:
      "subtitle img"
      "text img";
    grid-column-gap: 2em;
    margin-bottom: 6em;
  }

  .section__subtitle--about {
    grid-column: 1 / -1;
    grid-row: 1/2;
    position: relative;
    left: -1em;
    width: calc(100% + 1.5em);
    padding-left: 1em;
    padding-right: calc(300px + 1em);
    align-self: end;
  }

  .about-me__body {
    grid-row: 2/-1;
  }

  .about__img {
    grid-area: img;
    grid-row: 1/-1;
  }

  /* SKILLS */
  .section__subsection--skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2em;
    row-gap: 4em;
  }
  .subsection__item--skills:last-child {
    grid-column: 1/-1;
  }
}

/* Contact-Me */

.contact-me {
  background-color: var(--clr-dark);
  color: var(--clr-light);
  position: relative;
}

.contact-me__container {
  max-width: var(--custom-section-max-width);
  margin: 0 auto;
}

.contact-me__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.input-field__container > * {
  display: block;
  width: 100%;
}

.input-field {
  font-size: var(--fs-subtitle);
  padding: 0.5em 0.5em 0.25em;
  border: none;
  border-bottom: 3px solid var(--clr-accent);
  background-color: var(--clr-light);
  font-family: var(--ff-primary);
  color: var(--clr-dark);
}

.input-field__container label {
  font-size: var(--fs-subtitle);
  font-weight: var(--fw-light);
  padding: 0;
}

.input-field__container textarea {
  height: 10rem;
  line-height: 1.15;
}

.contact-me__form .btn {
  align-self: center;
  width: fit-content;
  margin: 1.5em 0 0;
  box-shadow: var(--bs);
}

.contact-me__img {
  width: 350px;
  margin-top: 2em;
  box-shadow: var(--bs);
  object-fit: cover;
}

.form-message {
  margin: 1.5rem auto;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  max-width: var(--custom-section-max-width);

  animation: messageIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.form-success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #6ee7b7;

  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.05),
    0 8px 24px rgba(16, 185, 129, 0.15);
}
@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #fca5a5;

  box-shadow:
    0 0 0 1px rgba(239, 68, 68, 0.05),
    0 8px 24px rgba(239, 68, 68, 0.18);
}

.form-error a {
  padding-left: 0.125rem;
  color: #fecaca;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-error a:hover {
  color: #fee2e2;
}

@media (max-width: 800px) {
  .contact-me__img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    bottom: -75px;
    left: calc(50% - 75px);
    padding: 0;
  }
}

@media (min-width: 800px) {
  .contact-me__container {
    display: flex;
    gap: 4em;
  }
}

/* footer */

.footer {
  background-color: var(--clr-light);
  color: var(--clr-accent);
  text-align: center;
  padding: calc(1.25em + 75px) 0 2em;
  font-size: var(--fs-subtitle);
  border-top: 4px solid var(--clr-accent);
}

.footer--project {
  padding-top: 2em;
}

.footer a {
  color: var(--clr-dark);
}

.footer__link,
.social-list__link span {
  font-weight: var(--fw-black);
  position: relative;
}

/* .footer__link::before,
.social-list__link span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--clr-dark);
} */

.footer__link,
.social-list__link {
  display: inline-block;
  transition: transform 200ms ease-in-out;
}

.footer__link:hover,
.social-list__link:hover {
  transform: scale(1.05);
  color: var(--clr-accent-secondary);
}

.social-list {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.social-list__item {
  font-weight: var(--fw-black);
}

.social-list__item a span {
  margin: 0 0.5em;
}

.footer__link,
.social-list__link {
  padding: 0.5em;
}

@media (min-width: 800px) {
  .footer {
    padding: 2em 0;
  }
}

/* Individual portfolio project styles */

.section__subtitle--intro-project-one {
  background-color: var(--clr-project-one);
  color: var(--clr-light);
}
.section__subtitle--intro-project-two {
  background-color: var(--clr-project-two);
  color: var(--clr-light);
}
.intro__project__img {
  box-shadow: none;
}
@media (min-width: 900px) {
  .intro__project__img {
    max-width: 400px;
  }
  .section__subtitle--intro-project-one,
  .section__subtitle--intro-project-two {
    padding-left: calc(400px + 3em);
  }
}

.portfolio-project-individual {
  padding: 0 2em 2em;
  margin: 0 auto;
  h3 {
    font-weight: var(--fw-bold);
    font-size: var(--fs-subtitle);
  }
}
.section__title--intro-project {
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.section__title--project--individual::after {
  width: 80%;
  height: 4px;
  margin: 0.5rem 0 0.5rem -0.5rem;
  background: var(--clr-accent);
}

.project__section--intro {
  max-width: var(--section-max-width);
  margin: 0 auto;
  > div {
    margin: 4rem 0;
  }
}
.btn-project {
  width: 100%;
}

.intro--project {
  max-width: var(--section-max-width);
}
@media (min-width: 600px) {
  .intro--project {
    grid-template-areas:
      "img title"
      "img subtitle"
      "img cta";
  }
  .btn-project {
    max-width: 400px;
    justify-self: end;
  }
}

@media (min-width: 600px) {
  .section__title--intro-project {
    max-width: 18ch;
  }
}
.project__section {
  margin-bottom: 6rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--section-max-width);
}

.project__section__highlight {
  font-size: 1.5rem;
  margin: 0;
  font-weight: var(--fw-bold);
}

.project__section__highlight__details p {
  margin: 0;
}

.portfolio__project__container {
  background-color: var(--clr-dark);
  color: var(--clr-light);
}
.project__section--group:not(:first-child) {
  margin-top: 3rem;
}
.project__section--text {
  margin-bottom: 3rem;
}

#final-result {
  padding-bottom: 0;
  .project__section {
    margin-bottom: 0;
  }
}
.project__section--conclusion {
  max-width: var(--custom-section-max-width);
}

.project__section--video {
  width: 100%;
  margin: 2rem 0 0;
  box-shadow: var(--bs);
}

@media (min-width: 600px) {
  .project__summary {
    grid-area: txt;
  }
  .project__section--intro {
    > div {
      margin: 0;
    }
  }
  .project__section--intro {
    display: grid;
    grid-template-areas: "txt ." "txt .";
    grid-template-columns: 60% max-content;
    column-gap: 6rem;
    align-items: baseline;
    justify-content: center;
  }
}

.ux_process--imgA {
  grid-area: imgA;
}
.ux_process--imgB {
  grid-area: imgB;
}

.design_process--imgA {
  grid-area: dsgnA;
}
.design_process--imgB {
  grid-area: dsgnB;
}
.design_process--imgC {
  grid-area: dsgnC;
}

.dev_process--img {
  grid-area: dev;
  width: 100%;
  max-width: 350px;
}

@media (min-width: 600px) {
  .dev_process {
    display: grid;
    grid-gap: 4rem;
    grid-template-columns: auto 1fr;
    margin: 6rem auto;
    grid-template-areas: "dev txt";
    max-width: var(--custom-section-max-width);
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 900px) {
  .project__section--group {
    display: grid;
    grid-gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 6rem auto;
  }
  .ux_process {
    grid-template-areas: "imgA txt" "imgA imgB";
  }

  .design_process {
    grid-template-areas: "txt dsgnA" "dsgnC dsgnB";
  }

  .project__section--text {
    margin: 3rem;
    align-self: center;
    max-width: 70ch;
  }
}
.project__section--conclusion-txt {
  margin: 1.25rem auto;
}

#project-conclusion {
  position: relative;
  background-color: var(--clr-dark);
  color: var(--clr-light);
  padding-top: 3rem;
}

#project-conclusion::before {
  position: absolute;
  content: "";
  background-color: var(--clr-dark);
  width: 100%;
  height: 125%;
  bottom: 0;
  left: 0;
  z-index: -2;
}

@media (min-width: 600px) {
  #project-conclusion::before {
    height: 170%;
  }
}
