body {
    margin: 0;
    padding: 0;
    overscroll-behavior: none;
    font-family: 'Nanum Myeongjo', serif;
    color: #fff;
    background: #050505;
    scroll-behavior: smooth;
    overflow: hidden;
}

span {
    display: inline-block;
    pointer-events: none;
    transition: transform 0.1s linear;
}

.dg.ac {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2 !important; /* TODO Solve this in HTML */
}


/* Footer */
.footer{
  border: none;
  width: 100%;
  margin: 0;              /* was margin-top: 40px */
  padding: 12px 0;        /* use padding instead */
  font-family: sans-serif;
  font-size: 9px;
  transition: all 0.8s ease-out 1.1s;
  color: antiquewhite;
  font-weight: 100;
  opacity: 0.2;
  text-align: center;
}

.footer p{
  margin: 0;              /* IMPORTANT */
}

.footer a {
    text-decoration: none;
    pointer-events: auto;
    color: antiquewhite;
}

nav { 
    width: 100%; 
    padding: 1rem; 
    position: fixed;  
    z-index: 2;
}

.cursor { 
    pointer-events: none;
    position: fixed; 
    top: 10px; 
    left: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 50%; 
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: transform .8s ease, opacity 0.6s ease;
    z-index: 2;
}

.a { 
    display: inline-block; 
    color: #fff; 
    padding: 1rem;
    margin-right: 4rem;
    letter-spacing: .4em;
    font-size: .9em;
    transition: all 0.3s ease, color 0.3s ease;
}

nav.header .a:hover {
    cursor: pointer;
    color: rgb(175, 175, 175); 
    transform: scale(1.1); 
}

nav.header .a:hover ~ .cursor {
    transform: translate(-50%, -50%) scale(5); opacity: 0.1; 
}
.lds-roller {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}
.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background:#f9f0ec;
    margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) { animation-delay: -0.036s; }
.lds-roller div:nth-child(2) { animation-delay: -0.072s; }
.lds-roller div:nth-child(3) { animation-delay: -0.108s; }
.lds-roller div:nth-child(4) { animation-delay: -0.144s; }
.lds-roller div:nth-child(5) { animation-delay: -0.18s; }
.lds-roller div:nth-child(6) { animation-delay: -0.216s; }
.lds-roller div:nth-child(7) { animation-delay: -0.252s; }
.lds-roller div:nth-child(8) { animation-delay: -0.288s; }

@keyframes lds-roller {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loading-text-intro {
    z-index: 3;
    position: absolute;
    width: 100vw;
    height: 100%;
    font-family: 'Josefin Sans', sans-serif;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 100;
    color: #f9f0ec;
    background: radial-gradient(circle at center center, #5d5d5d 0, #090909 58%);
}
#loading-text-intro.ended {
    transform: translateY(200%);
}

/* Navigation */

html {
    scroll-behavior: smooth;
}

.header {
    position: absolute;
    top: -2em;
    left: 0;
    color: #fff;
    font-size: .8em;
    width: 100%;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    z-index: 2;
    opacity: 0;
    transition: all 1.9s ease-in-out;
    padding: 0;
    margin: 0;
}
.header.ended {
    top: 3em;
    opacity: 1;
}
.header>span {
    padding: 0 3.25em;
    letter-spacing: .4em;
    position: relative; 
}
.header>span.active:after,
.first {
    position: absolute;
    left: 50%;
    transform: translate3d(-50%,0,0);
}
.header>span.active:after {
    content: "";
    bottom: -10px;
    width: 20px;
    height: 2px;
    background: #fff;
}

/* Canvas container behind the entire background */
#canvas-container {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    outline: none;
    z-index: 0;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center center, #171717 0, #050505 58%);
}

#canvas-container-details {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    outline: none;
    z-index: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    pointer-events: all;
    overflow: hidden;
}

.section {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    padding-left: 5%;
    padding-right: 5%;
    z-index: 1;
    width: 65%;
    height: 100vh;
    pointer-events: none;
}

.first {
    /* pointer-events: none; */
    font-size: 2em;
    letter-spacing: .5em;
    text-align: center;
    width: 100%;
    display: flex;
    height: 120vh;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background: linear-gradient(0deg, rgba(5,5,5,1) 20%, rgba(5,5,5,0) 50%);
}
.first>h2 {
    font-size: 1em;
    line-height: 0;
    font-weight: 100;
    letter-spacing: .25em;
    font-style: italic;
    margin: 35px;
}
.first>h1 {
    pointer-events: auto; /* Allow interactions */
    margin: 10px 0;
    font-weight: 100;
    letter-spacing: 0.4em;
    position: relative; /* Ensure `::after` is positioned relative to this */
    font-size: clamp(2.6rem, 7vw, 3.6rem);

}

/* horizontal underline */
.first > h1::after {
    content: "";
    position: absolute;
    margin-top: 105px;
    left: 50%; /* Centered */
    transform: translateX(-50%); /* Adjust centering */
    width: 50px; /* Initial width */
    height: 2px;
    background: #ffffff70;
    transition: width 0.6s ease-in-out, background-color 0.6s ease-in-out;
}

/* Smoothly expand and change color on hover */
.first > h1:hover::after {
    width: 100px; /* Expanded width */
    background: white; /* Brighten color */
}


.first>p {
    font-size: 13px;
    letter-spacing: 0px;
    font-family: sans-serif;
    width: 700px;
    line-height: 28px;
    font-weight: lighter;
    margin-top: 50px;
    margin-bottom: 100px;
    color: #c9c9c996;
    opacity: 0;
    transition: all 3.9s ease-in-out;
}
.first>p.ended {
    opacity: 1;
}
/* About section */
.second {
    pointer-events: all;
    font-size: 2em;
    width: 100%;
    display: flex;
    height: 100vh;
    background: #141414;
    z-index: 1;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px); /* Slight upward movement */
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}
/* When visible, fade in */
.second.visible {
    opacity: 1;
    transform: translateY(0);
}

.second-container {
    pointer-events: all;
    width: 100%;
    display: flex;
    height: 100vh;
    margin: 0;
    padding: 0 10%;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background: radial-gradient(circle at 90% center, rgba(5,5,5,0) 30%, #141414 70%);
}

.second-container>ul {
    list-style: none;
    display: inline-flex;
    padding: 0px;
    margin: 0px 0px 30px 60px;
    font-family: 'DM Serif Display', serif;
    color:#ffffff1c;
    z-index: 2;
}
.second-container>ul>li.active:after {
    content: "";
    top: 20px;
    width: 50px;
    height: 2px;
    background: #ccc;
    position: relative;
    left: 0px;
    display: block;
    transition: width 0.6s ease-in-out, background-color 0.6s ease-in-out;
}

/* Smoothly expand and change color on hover */
.second-container>ul>li.active:hover:after {    
    width: 65px; /* Expanded width */
    background-color: white; /* New color */
}

.second-container>ul>li {
    padding-right: 20px;
    transition: all 0.8s ease-out;
}
.second-container>ul>li:hover {
    color:whitesmoke;
    pointer-events: all;
    cursor: pointer;
}
.second-container>ul>li.active {
    color:whitesmoke;
}
.second-container>p {
    font-size: 14px;
    font-family: sans-serif;
    line-height: 24px;
    width: 30%;
    color: #898989;
    margin-left: 60px;
    height: 200px;
}
/******************************************
PROJECT PORTFOLIO SECTION STYLES (UPDATED)
******************************************/

.portfolio-section {
  width: 100vw;
  min-height: 100vh;
  padding: 40px 5%;
  box-sizing: border-box;
  background-color: #0a0a0a;
  color: #fff;

  /* fade-in */
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;

  justify-content: flex-start;
  padding-top: clamp(90px, 12vh, 150px);  /* increase to move it down a bit */
}

.portfolio-section.visible {
  opacity: 1;
}

.portfolio-header {
  text-align: center;
  max-width: 100%;
  margin: 40px auto 10px auto;
}

.portfolio-header h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 200;                 /* removes default bold look */
  font-size: clamp(2.2rem, 5vw, 2.2rem);
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  text-align: center;
}

.portfolio-header p {
  font-family: 'Josefin Sans', sans-serif;  /* matches your paragraph style */
  font-weight: 300;
  font-size: 1.05rem;
  color: #898989;
  margin: 0;
  text-align: center;
}

/* horizontal project line default state */
.portfolio-title::after {
  content: "";
  display: block;
  width: 70px;                      /* closer to the “Coding” underline */
  height: 2px;
  background-color: rgba(255,255,255,0.35);
  margin: 16px auto 0;              /* spacing like your section headings */
  transition: width 0.6s ease-in-out, background-color 0.6s ease-in-out;
}

/* hover */
.portfolio-title:hover::after {
  width: 100px;
  background-color: white;
}

.portfolio-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;              /* better arrow alignment */
  gap: 16px;
  max-width: 1400px;      /* ⬅ bigger on large screens */

  margin: 0 auto;
  padding-top: 5%;
  position: relative;
}

/* viewport hides overflow so only “page” of cards shows */
.portfolio-viewport {
  overflow: hidden;
  width: 100%;
}

/* horizontal scrolling container (your JS moves this via transform) */
.portfolio-cards-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  transition: transform 0.4s ease-in-out;
}

/* Arrow buttons (kept inside viewport on small screens) */
.arrowBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 999px;

  font-size: 2rem;
  color: #fff;
  cursor: pointer;

  display: grid;
  place-items: center;

  transition: transform 0.2s;
}

#prevBtn { left: 8px; }
#nextBtn { right: 8px; }

.arrowBtn:hover {
  transform: translateY(-50%) scale(1.12);
}

/* Card */
.portfolio-card {
  flex: 0 0 calc((100% / 3) - 16px);   /* desktop: 3 cards */
  min-width: 280px;                    /* prevents squishing/jumbled layout */

  background-color: #111;
  border-radius: 8px;
  padding: 18px;
  box-sizing: border-box;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease-in-out;

  display: flex;                       /* stabilizes text + button */
  flex-direction: column;
}

.portfolio-card:hover {
  transform: scale(1.04);
}

/* Stable image height */
.portfolio-image {
  width: 100%;
  aspect-ratio: 16 / 9;                /* keeps consistent card height */
  border-radius: 8px;
  margin-bottom: 12px;
  object-fit: cover;
}

.portfolio-card h3 {
  font-size: 1.4rem;
  margin: 0 0 8px;
}

/* Text grows, button stays at bottom */
/* Card paragraph — match site body text style */
.portfolio-card p {
  flex: 1;

  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;

  font-size: 1rem;
  line-height: 1.65;

  color: #898989;          /* matches your other section paragraphs */
  margin: 0 0 16px;        /* consistent spacing */
}

/* keep link/button area pinned */
.portfolio-card a {
  margin-top: auto;
  display: inline-block;
}

.portfolio-btn {
  font-size: 0.9rem;
  padding: 8px 16px;
  background: #ffffff10;
  border: 1px solid #666;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;                 /* prevents button text wrapping */
}

.portfolio-btn:hover {
  background: #ffffff40;
}

/* ===== Responsive ===== */

/* 2 cards */
@media (max-width: 1024px) {
  .portfolio-card {
    flex: 0 0 calc((100% / 2) - 16px);
  }
}

/* 1 card + tighter arrows */
@media (max-width: 700px) {
  .portfolio-card {
    flex: 0 0 100%;
    min-width: 0;                      /* allow full width on mobile */
  }

  .portfolio-wrapper {
    padding-left: 56px;                /* space so arrows don’t overlap cards */
    padding-right: 56px;
  }

  .arrowBtn {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }

  #prevBtn { left: 6px; }
  #nextBtn { right: 6px; }
}


/**********************************************
  SKILLS SECTION (LEFT/RIGHT SPLIT) - UPDATED FULL
**********************************************/

/* Responsive sizing knobs */
:root {
  --skills-icon-size: clamp(22px, 2.6vw, 42px);
  --skills-col-gap: clamp(14px, 3vw, 54px);
  --skills-row-gap: clamp(10px, 2.2vh, 24px);
}

.making-section {
  display: flex;
  width: 100vw;
  min-height: 100vh;
  height: auto;
  position: relative;
  background: radial-gradient(circle at 90% center, rgba(5,5,5,0) 30%, #141414 70%);

  /* fade */
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.making-section.visible {
  opacity: 1;
}

/* LEFT: 3D */
.making-left {
  flex: 1;
  position: relative;
  overflow: hidden;
}

#canvas-container-making {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Shrink the 3D canvas slightly so it doesn't overpower the section */
#canvas-container-making canvas {
  transform: scale(0.88);
  transform-origin: center;
}

/* RIGHT: text + icons */
.making-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* Keep everything inside viewport neatly */
  padding: clamp(18px, 3vw, 44px);
  box-sizing: border-box;
  max-height: 100vh;

  /* Align Skills heading + quote to the same left edge */
  padding-left: 35px;
  padding-right: 35px;
}

/* ===== Skills heading consistency (match Coding / Projects) ===== */
.making-right h2{
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.8vw, 2.2rem);
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  color: #fff;
  text-align: left;
}

/* underline like Coding/Projects */
.making-right h2::after{
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background-color: rgba(255,255,255,0.35);
  margin-top: 16px;
  transition: width 0.6s ease-in-out, background-color 0.6s ease-in-out;
}

.making-right h2:hover::after{
  width: 100px;
  background-color: white;
}

/* Quote: normal width + normal weight (NOT bold) */
.making-right blockquote{
  margin: 0;
  padding: 0;
  width: min(100%, 720px);
}

/* Quote text */
.making-right blockquote p{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #898989;
  margin: 0 0 12px;
  text-align: left;
}

/* Author line */
.making-right blockquote cite{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #898989;
}

/* ICON PYRAMID (scales with window) */
.skills-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--skills-row-gap);

  width: 100%;
  margin-top: clamp(18px, 4vh, 34px);

  /* prevents last icon clipping/overlap */
  padding-bottom: clamp(28px, 10vh, 130px);
  box-sizing: border-box;
}

.skills-icons .row {
  display: flex;
  justify-content: center;
  gap: var(--skills-col-gap);
}

.skills-icons .row img {
  width: var(--skills-icon-size);
  height: auto;
  transition: transform 0.3s, filter 0.3s;
  cursor: pointer;
}

.skills-icons .row img:hover {
  transform: scale(1.25);
  filter: brightness(1.35);
}

/* If the screen is short, allow scrolling INSIDE the right panel as a fallback */
@media (max-height: 720px) {
  .making-right {
    overflow-y: auto;
  }
}

/* Mobile layout */
@media (max-width: 768px) {
  .making-section {
    flex-direction: column;
  }

  .making-left,
  .making-right {
    width: 100%;
    flex: none;
  }

  .making-left {
    height: 45vh;
  }

  .making-right {
    max-height: none;
  }

  /* shrink 3D a bit more on mobile */
  #canvas-container-making canvas {
    transform: scale(0.78);
  }

  /* tighter spacing so icons don’t run off-screen */
  .skills-icons .row {
    gap: clamp(12px, 4vw, 28px);
  }
}
/**********************************************
  CONTACT ME SECTION - UPDATED FULL (CLEAN + CONSISTENT)
  NOTE: Your HTML uses <h2>Contact Me</h2> (not h1),
  so this CSS targets .third h2 for heading styling.
**********************************************/

/* Whole section (also your WebGL canvas container) */
.third#canvas-container-contact{
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* fade-in */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.third#canvas-container-contact.visible{
  opacity: 1;
  transform: translateY(0);
}

/* Keep the canvas behind everything */
#canvas-container-contact canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Content spacing */
.third{
  padding: clamp(18px, 4vw, 44px);
  box-sizing: border-box;
  width: 100%;
}

/* ===== Heading: match your site heading style ===== */
.third h2{
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.8vw, 2.2rem);
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0 10px;
  text-align: center;
}

/* Underline like Projects/Skills */
.third h2::after{
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background-color: rgba(255,255,255,0.35);
  margin: 16px auto 0 auto;
  transition: width 0.6s ease-in-out, background-color 0.6s ease-in-out;
}

.third h2:hover::after{
  width: 100px;
  background-color: white;
}

/* Intro text */
.third > p{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #898989;
  text-align: center;
  margin: 18px auto 18px auto;
  width: min(100%, 720px);
  padding: 0 10px;
  box-sizing: border-box;
}

/* ===== Form container (centered always) ===== */
.third form{
  width: min(92vw, 800px);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Inputs/Textarea/Button */
.third form input,
.third form textarea,
.third form button{
  width: 100%;
  padding: 16px;
  background-color: rgba(51, 51, 51, 0.6);
  color: #fff;

  border: 1px solid rgba(0,0,0,0.8);
  border-radius: 6px;

  box-sizing: border-box;
  font-size: 1rem;

  display: block;
  margin: 0 auto;

  /* fade-in */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.third form input::placeholder,
.third form textarea::placeholder{
  color: rgba(214, 214, 214, 0.6);
}

.third form input:focus,
.third form textarea:focus{
  background-color: rgba(68, 68, 68, 0.7);
  outline: none;
  border-color: rgba(255,255,255,0.25);
}

/* Button styling */
.third form button{
  background-color: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  padding: 12px 16px;
}

.third form button:hover{
  background-color: rgba(255,255,255,0.22);
}

/* Staggered fade-in (IMPORTANT: uses your existing .third.visible class) */
.third.visible form input:nth-of-type(1){ transition-delay: 0.2s; }
.third.visible form input:nth-of-type(2){ transition-delay: 0.4s; }
.third.visible form textarea{ transition-delay: 0.6s; }
.third.visible form button{ transition-delay: 0.8s; }

/* When visible, show elements */
.third.visible form input,
.third.visible form textarea,
.third.visible form button{
  opacity: 1;
  transform: translateY(0);
}

/* Social icons */
.social-icons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}

.social-icons a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.social-icons img{
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease-in-out;
}

.social-icons a:hover{
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.social-icons a:hover img{
  transform: scale(1.2);
}

/* Mobile tweaks */
@media (max-width: 600px){
  .third > p{
    font-size: 1rem;
  }

  .third form input,
  .third form textarea{
    padding: 14px;
  }
}
@media only screen and (max-width: 660px) {
    .a {
        padding: 10px;
        margin-right: 0rem;
        letter-spacing: 0.3em;
    }
    .footer {
        margin-bottom: 20px;
    }
    .header>span {
        padding: 0 1em;
    }
    .header {
        font-size: .6em;
    }
    .first>h1 {
        margin: 10px 0;
        font-weight: 100;
        letter-spacing: 0.2em;
        font-size: 13vw;
    }
    .first>p {
        width: 85%;
        line-height: 22px;
    }
    .second-container {
        padding: 0;
        justify-content: flex-end;
    }
    .second-container>ul {
        margin: 0px 0px 30px 30px;
        width: 80%;
    }
    .second-container>ul>li {
        padding-right: 20px;
        transition: all 0.8s ease-out;
        font-size: 20px;
    }
    .second-container>p {
        width: 85%;
        margin-left: 30px;
        line-height: 21px;
        margin-bottom: 40px;
    }
    .third>p {
        column-count: 1;
    }
}



  /* On smaller screens: show only 1 card per row */
  @media (max-width: 768px) {
    .portfolio-card {
      flex: 0 0 100%;
      margin-right: 0;
    }
    .portfolio-wrapper {
      flex-wrap: nowrap;
      align-items: center;
    }
  }
/* =========================
   TYPOGRAPHY (GLOBAL)
   ========================= */
:root{
  --font-heading: 'Josefin Sans', sans-serif;
  --font-body: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --weight-heading: 100;
  --weight-body: 300;

  --color-body: #c9c9c996;
  --color-body-strong: #898989;
  --color-white: #fff;
}
