@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;1,500&family=Quicksand:wght@400;500;700&family=Shrikhand&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color-base: white;
  --color-50: color-mix(in oklab, var(--color-base) 10%, white);
  --color-100: color-mix(in oklab, var(--color-base) 30%, white);
  --color-200: color-mix(in oklab, var(--color-base) 50%, white);
  --color-400: color-mix(in oklab, var(--color-base) 70%, white);
  --color-500: color-mix(in oklab, var(--color-base) 70%, black);
  --color-600: color-mix(in oklab, var(--color-base) 55%, black);
  --color-700: color-mix(in oklab, var(--color-base) 40%, black);
  --color-800: color-mix(in oklab, var(--color-base) 30%, black);
  --color-900: color-mix(in oklab, var(--color-base) 10%, black);
  --color-bg: var(--color-50);
  --color-text: var(--color-800);
  --color-heading: var(--color-600);
  --color-gradient-dark: var(--color-500);
  --color-gradient-light: var(--color-bg);
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 576px) {
  html {
    font-size: 50%;
  }
}

body {
  box-sizing: border-box;
  position: relative;
  z-index: -10;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  /* fallback height */
  min-height: 100vh;
  /* new small viewport height for modern browsers */
  min-height: 100svh;
  background: var(--color-bg);
}

img {
  width: 100%;
  display: block;
}

main {
  z-index: -10;
}

@font-face {
  font-family: "Aesthetic";
  src: url("/assets/font/Aesthetic-Regular.woff");
}
body {
  font-size: max(16px, 1.8rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  text-rendering: optimizeLegibility;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text);
}

:is(h1, h2, h3, h4, h5, h6) {
  color: var(--color-heading);
}

h1 {
  font-size: 3.2rem;
  line-height: 1.25;
}

.about__info h1 {
  font-weight: 400;
}

h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 500;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}

h4 {
  font-size: 1.6rem;
  line-height: 1.5;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.6rem;
}

.work__project-role {
  font-family: Playfair;
  font-weight: 400;
  color: var(--color-text);
  font-size: 2.4rem;
}

.work__project-info > h3 {
  font-size: 5.6rem;
  font-family: "Aesthetic", serif;
  text-wrap: pretty;
}

.credits__role-title {
  color: var(--color-heading);
}

.project__tagline {
  font-size: 2.2rem;
}

.project__heading {
  font-family: "Aesthetic", serif;
  font-size: 8rem;
  font-weight: 400;
  max-width: 14ch;
}

.hero__heading {
  font-family: "Aesthetic", serif;
  font-size: 10rem;
  font-weight: 400;
}

.learnings__heading {
  font-family: "Aesthetic", serif;
  font-size: 4.2rem;
}

.about__info h1 {
  font-size: 5.6rem;
  font-family: "Aesthetic", serif;
}

.contact__heading {
  font-size: 5.6rem;
  font-family: "Aesthetic", serif;
  font-weight: 600;
}

:where(.block--text, .block--list) + :where(.block--text, .block--list) {
  --flow-spacing: 2em;
}

.block--heading:has(h1) + :is(.block--heading, .block--text, .block--list) {
  --flow-spacing: 1.6em;
}

.block--heading:has(h2) + :is(.block--heading, .block--text, .block--list) {
  --flow-spacing: 1.2em;
}

.block--heading:has(h2) + :is(.block--heading:has(h3)) {
  --flow-spacing: 0.75em;
}

.block--heading:has(h3) + :is(.block--heading, .block--text, .block--list) {
  --flow-spacing: 1em;
}

.block--list li:not(:first-child) {
  margin-top: 1rem;
}

.block--text > p:not(:first-child) {
  --flow-spacing: 1em;
}

.block--list ul {
  list-style: none;
}

.block--list li {
  display: flex;
  align-items: start;
  gap: 1.4rem;
}

.block--list .material-symbols-outlined {
  font-size: 3.2rem;
}

:is(.block--list, .block--text) strong {
  font-weight: bold;
  color: var(--color-heading);
}

.u-center-vertical {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.u-center-horizontal {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.u-margin-bottom-16 {
  margin-bottom: 1.6rem;
}

.u-margin-bottom-24 {
  margin-bottom: 2.4rem;
}

.u-margin-bottom-32 {
  margin-bottom: 3.2rem;
}

[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}

[style*="--aspect-ratio"] > img {
  height: auto;
}

@supports (--custom:property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }
  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }
  [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}
.order--first {
  order: 1;
}
.order--second {
  order: 2;
}

.flow > * + * {
  margin-top: var(--flow-spacing, 1em);
}

.u-narrow {
  max-width: 76.8rem;
  margin-left: auto;
  margin-right: auto;
}

.button, .button--outlined, .button--full-width, .button--small {
  background-color: var(--color-500);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 20rem;
  display: inline-block;
  padding: 1.6rem 4.8rem;
  transition: background-color 0.2s;
}
.button:hover, .button--outlined:hover, .button--full-width:hover, .button--small:hover {
  background-color: var(--color-600);
}
.button--small {
  padding: 1.6rem 4.8rem;
  transition: padding 0.3s, background-color 0.3s;
}
.button--small:hover {
  padding: 1.6rem 6.4rem;
}
.button--full-width {
  width: 100%;
  text-align: center;
}
.button--outlined {
  color: var(--color-500);
  background-color: initial;
  border: 1px solid var(--color-500);
  transition: color 0.3s, background-color 0.3s;
}
.button--outlined:hover {
  background-color: var(--color-500);
  color: #FFFFFF;
}

.canvas--background {
  width: 100vw;
  height: 100vh;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -100;
  filter: blur(40px);
}
.canvas--background__container {
  width: 246rem;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.canvas__circle {
  position: absolute;
  border-radius: 800px;
  opacity: 1;
  mix-blend-mode: lighten;
}
.canvas__circle-1 {
  left: 960px;
  top: 1445px;
  width: 500px;
  height: 500px;
  transform-origin: calc(50% + 300px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.12) 50%, white);
  animation: moveInCircle 30s linear infinite;
}
.canvas__circle-2 {
  left: 390px;
  top: 390px;
  width: 390px;
  height: 390px;
  transform-origin: calc(50% - 600px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.12) 20%, white);
  animation: moveInCircle 20s reverse linear infinite;
}
.canvas__circle-3 {
  left: 800px;
  top: 210px;
  width: 350px;
  height: 350px;
  transform-origin: calc(50% - 400px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.12) 80%, white);
  animation: moveInCircle 40s linear infinite;
}
.canvas__circle-4 {
  left: 600px;
  top: 660px;
  width: 250px;
  height: 250px;
  transform-origin: calc(50% - 500px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.12) 10%, white);
  animation: moveHorizontal 30s ease infinite;
}
.canvas__circle-5 {
  left: 1850px;
  top: 685px;
  width: 250px;
  height: 250px;
  transform-origin: calc(50% - 600px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.12) 60%, white);
  animation: moveInCircle 30s reverse linear infinite;
}
.canvas__circle-6 {
  left: 1860px;
  top: 768px;
  width: 350px;
  height: 350px;
  transform-origin: calc(50% - 200px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.12) 40%, white);
  animation: moveVertical 20s reverse linear infinite;
}
.canvas__circle-7 {
  left: 800px;
  top: 1024px;
  width: 124px;
  height: 124px;
  transform-origin: calc(50% + 100px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.12) 60%, white);
  animation: moveVertical 40s reverse linear infinite;
}
.canvas__circle-8 {
  left: 1600px;
  top: 160px;
  width: 250px;
  height: 250px;
  transform-origin: calc(50% + 100px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.12) 20%, white);
  animation: moveInCircle 30s linear infinite;
}
.canvas__circle-9 {
  left: 800px;
  top: 250px;
  width: 450px;
  height: 450px;
  transform-origin: calc(50% + 300px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.12) 10%, white);
  animation: moveInCircle 30s linear infinite;
}
.canvas__circle-10 {
  left: 1200px;
  top: 600px;
  width: 960px;
  height: 960px;
  transform-origin: calc(50% + 400px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.12) 20%, white);
  animation: moveInCircle 30s reverse linear infinite;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
.block--carousel {
  display: flex;
  gap: 1.6rem;
  overflow: scroll;
  scroll-snap-type: x mandatory;
  max-height: 66.8rem;
  width: 100%;
  padding: 0 2.4rem;
  margin-left: auto;
  margin-right: auto;
}
.block--carousel .carousel__image {
  border-radius: 2.4rem;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  max-width: 66.8rem;
  max-height: 100%;
  object-fit: cover;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .block--carousel .carousel__image {
    max-width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .block--carousel {
    max-height: 40rem;
  }
}

@media screen and (min-width: 1200px) {
  .block--carousel .carousel__image {
    scroll-snap-stop: normal;
  }
}
.credits {
  display: flex;
  gap: 2.4rem;
  margin-top: 0;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .credits {
    flex-direction: column;
  }
}
.credits__role-title {
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.credits > .credits__role:first-child {
  padding-left: 0;
}
.credits .credits__divider {
  width: 0.1rem;
  background: var(--color-heading);
  opacity: 0.2;
}
@media only screen and (max-width: 768px) {
  .credits .credits__divider {
    width: 100%;
    height: 0.1rem;
  }
}
.credits__role-title, .credits__role-names {
  display: block;
}

.contact {
  --inline-padding: 2.4rem;
  --max-width: 60ch;
  max-width: min(var(--max-width), 100% - var(--inline-padding) * 2);
  margin: auto;
  margin-top: 20rem;
}
@media only screen and (max-width: 768px) {
  .contact {
    margin-top: 9.6rem;
  }
}

.contact > * {
  --flow-spacing: 1em;
}

.contact__heading,
.contact__description {
  text-align: center;
}

.contact__button {
  margin-top: 3.2rem;
}

.block--embed {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 2.4rem;
  grid-column: breakout !important;
}
.block--embed::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.block--embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero {
  --circle-width: 1.6rem;
  --mask-width: 60rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  max-width: 120rem;
  margin: 16rem auto;
  position: relative;
  z-index: -10;
  text-align: center;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.hero__heading {
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
  z-index: -2;
}
.hero__subheading {
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .hero {
    height: initial;
    margin-top: initial;
    padding: 20vh 0;
  }
}
.hero .hero__cursor-mask,
.hero .hero__cursor-mask--reflected {
  width: var(--mask-width);
  height: var(--mask-width);
  border-radius: 50%;
  backdrop-filter: sepia(60%);
  -webkit-backdrop-filter: sepia(60%);
  position: absolute;
  z-index: -1;
  mask: radial-gradient(closest-side, black 35%, transparent);
  pointer-events: none;
}
.hero .hero__cursor-mask {
  top: calc(50% - var(--mask-width) / 2);
  left: calc(50% - var(--mask-width) / 2);
}
.hero .hero__cursor-mask--reflected {
  right: calc(50% - var(--mask-width) / 2);
  bottom: calc(50% - var(--mask-width) / 2);
  backdrop-filter: sepia(60%) hue-rotate(180deg) saturate(200%);
  -webkit-backdrop-filter: sepia(60%) hue-rotate(180deg) saturate(200%);
}
.hero .hero__cursor-circle,
.hero .hero__cursor-circle--reflected {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 3rem 1.2rem #eb7347;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  border-radius: 50%;
  filter: blur(0.4rem) sepia(100%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero .hero__cursor-circle {
  top: calc(50% - var(--circle-width) / 2);
  left: calc(50% - var(--circle-width) / 2);
}
.hero .hero__cursor-circle--reflected {
  right: calc(50% - var(--circle-width) / 2);
  bottom: calc(50% - var(--circle-width) / 2);
  filter: blur(0.4rem) hue-rotate(180deg);
}

.hero__heading-character {
  transition: all 0.5s ease;
  display: inline-block;
}

.hero__heading p {
  display: inline;
}

.block--split-view img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media only screen and (max-width: 768px) {
  .block--split-view img {
    height: auto;
  }
}

.block--split-view ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .block--split-view ul {
    grid-template-columns: 1fr;
  }
}

:has(> figure) + :has(> figure) {
  margin-top: 1.6rem !important;
}

.block--image,
.block--split-view {
  grid-column: breakout !important;
}

.block--image img,
.block--split-view img,
.block--carousel img {
  border-radius: 2.4rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.learnings__columns {
  display: grid;
  gap: 3.2rem;
  grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .learnings__columns {
    grid-template-columns: 1fr;
  }
}
.learnings__heading {
  margin-bottom: 2.4rem;
  text-align: center;
}

.logo {
  width: 100%;
  display: grid;
}

.private-project > * {
  --flow-spacing: 1em;
}

.private-project__heading,
.private-project__description {
  text-align: center;
}

.private-project__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 4.8rem;
}

.block--quote {
  grid-column: breakout;
  text-align: right;
  color: var(--color-text);
}
.block--quote > blockquote {
  font-size: 4.2rem;
  line-height: 1.5;
  font-family: "Playfair Display", sans-serif;
  font-style: italic;
  text-wrap: balance;
  max-width: 28ch;
  margin-left: auto;
  color: var(--color-heading);
}
.block--quote > blockquote > footer {
  font-style: normal;
  font-size: 1.8rem;
  font-family: roboto, sans-serif;
  margin-top: 1.6rem;
}

.two-column-text {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .two-column-text {
    grid-template-columns: 1fr;
  }
}

.block--video {
  border-radius: 2.4rem;
  grid-column: breakout !important;
}
.block--video:has(iframe) {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 2.4rem;
}
.block--video:has(iframe)::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.block--video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube-video__wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 2.4rem;
}
.youtube-video__wrapper::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.youtube-video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer {
  text-align: center;
  color: var(--color-500);
  padding: 2.4rem;
}

.container, .container--narrow {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(12, 1fr);
  padding: 0 3.2rem;
  max-width: 162.4rem;
  margin: 0 auto;
}
.container--narrow {
  max-width: 120rem;
  padding: 0;
}

.grid-col-span-2 {
  grid-column-end: span 2;
}

.grid-col-span-3 {
  grid-column-end: span 3;
}

.grid-col-span-4 {
  grid-column-end: span 4;
}

.grid-col-span-5 {
  grid-column-end: span 5;
}

.grid-col-span-6 {
  grid-column-end: span 6;
}

.grid-col-span-7 {
  grid-column-end: span 7;
}

.grid-col-span-8 {
  grid-column-end: span 8;
}

.grid-col-span-9 {
  grid-column-end: span 9;
}

.grid-col-span-10 {
  grid-column-end: span 10;
}

.grid-col-span-11 {
  grid-column-end: span 11;
}

.grid-col-span-12 {
  grid-column-end: span 12;
}

.grid-col-start-2 {
  grid-column-start: 2;
}

.grid-col-start-3 {
  grid-column-start: 3;
}

.grid-col-start-4 {
  grid-column-start: 4;
}

.grid-col-start-5 {
  grid-column-start: 5;
}

.grid-col-start-6 {
  grid-column-start: 6;
}

.grid-col-start-7 {
  grid-column-start: 7;
}

.grid-col-start-8 {
  grid-column-start: 8;
}

.grid-col-start-9 {
  grid-column-start: 9;
}

.grid-col-start-10 {
  grid-column-start: 10;
}

.grid-col-start-11 {
  grid-column-start: 11;
}

.grid-col-start-12 {
  grid-column-start: 12;
}

@media only screen and (max-width: 768px) {
  [class*=grid-col] {
    grid-column: span 12;
  }
}
.content-grid {
  --padding-inline: 2.4rem;
  --content-max-width: 70ch;
  --breakout-max-width: 120rem;
  --breakout-size: calc((var(--breakout-max-width) - var(--content-max-width)) / 2);
  display: grid;
  grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [breakout-start] minmax(0, var(--breakout-size)) [content-start] min(100% - var(--padding-inline) * 2, var(--content-max-width)) [content-end] minmax(0, var(--breakout-size)) [breakout-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}
.content-grid > :not(.full-width, .breakout) {
  grid-column: content;
}
.content-grid > .full-width {
  grid-column: full-width;
}
.content-grid > .breakout {
  grid-column: breakout;
}
.content-grid p:has(> img) {
  grid-column: breakout !important;
}

.header {
  display: flex;
  justify-content: space-around;
  color: var(--color-heading);
  max-width: 144rem;
  width: 100%;
  margin: auto;
  padding: 2.4rem;
  z-index: 2;
}
.header__nav-list {
  display: flex;
  list-style: none;
  gap: 4.8rem;
  align-items: center;
}
.header__logo {
  width: 5.6rem;
}
.header a {
  color: inherit;
  text-decoration: none;
}

main {
  width: 100%;
  margin: 0 auto;
}

.about {
  --inline-padding: 2.4rem;
  --max-width: 120rem;
  max-width: min(var(--max-width), 100% - var(--inline-padding) * 2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
  margin: auto;
  margin-top: 4.8rem;
}
@media only screen and (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
  }
}

.about__media {
  max-width: 55.2rem;
  margin: auto;
}

.about__profile-picture {
  border-radius: 100%;
}

body:has(.work) {
  --color-text: black;
  --color-heading: black;
  --color-gradient-dark: white;
  --color-gradient-light: white;
  --color-gradient-top: #e2dbf4;
  --color-gradient-bottom: #fcefe0;
  --color-bg: var(--color-gradient-top);
  background-image: linear-gradient(to bottom, var(--color-gradient-top), var(--color-gradient-bottom));
}

html:has(.work) {
  --color-bg: black;
  --color-text: black;
  --color-heading: black;
  --color-gradient-dark: white;
  --color-gradient-light: white;
  --color-gradient-top: #e2dbf4;
  --color-gradient-bottom: #fcefe0;
  background-image: linear-gradient(to bottom, var(--color-gradient-top), var(--color-gradient-bottom));
}

.work {
  padding: 0 2.4rem;
  max-width: 120rem;
  margin: auto;
}
.work__project {
  display: grid;
  gap: 9.6rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 12rem;
}
@media only screen and (max-width: 768px) {
  .work__project {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
.work__project-description {
  max-width: 40ch;
  margin-top: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .work__project-description {
    max-width: 100%;
  }
}
.work__project-thumbnail {
  background-size: cover !important;
  background-position: center !important;
  border-radius: 3.2rem;
  position: relative;
  transition: transform 0.4s ease;
}
@media only screen and (max-width: 768px) {
  .work__project-thumbnail {
    order: 0;
  }
}
.work__project-thumbnail:hover {
  transform: translateY(-1rem) scale(1.01);
}
.work__project-thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.5;
  border-radius: 3.2rem;
  transition: opacity 0.4s ease;
}
.work__project-thumbnail:hover::after {
  opacity: 1;
}
.work__project-info {
  width: 100%;
}
.work__project-role {
  margin: 0;
}
.work__project-button {
  background-color: black;
  color: white;
  margin-top: 2.4rem;
}
@media only screen and (max-width: 576px) {
  .work__project-button {
    width: 100%;
    text-align: center;
  }
}
.work__project-button:hover {
  background-color: #434343;
}

.project__header {
  margin-top: 24rem;
  margin-bottom: 12rem;
}

.project__header:has(+ .credits) {
  margin-bottom: 6.4rem;
}

article {
  margin-bottom: 7.2rem;
}

/*# sourceMappingURL=main.css.map */
