* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px*/
}

:root {
    --cormorant: 'Cormorant', serif;
    --monsieur: 'Monsieur La Doulaise', serif;
    --tenor-sans: 'Tenor Sans', serif;

    --white: #FFFFFF;
    --cream: #F5EBE0;
    --black: #0A0A0A;
    --black-light-opacity: rgba(10, 10, 10, 0.8);
    --burgundy: #4C0509;
    --transparent: rgba(255, 255, 255, 0.1);

    --gray: #D9D9D9;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: var(--tenor-sans);
    padding: 50px 70px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;

    /* background-color: var(--black); */
    background-color: var(--transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);   /* x‑offset | y‑offset | blur | color */
    
}


.logo-title {
    margin-left: 20px;
    font-size: 3rem;
    font-weight: 100;
}

.logo-title:hover {
    cursor: default;
}

nav {
    width: 45%;
    max-width: 700px;
    /* background-color: red; */
}

nav > ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    font-size: 1.8rem;
    list-style-type: none;
}

li a {
    text-decoration: none;
    color: inherit;
}

.underline-hover::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    margin-top: 2px;
    background: var(--white);
    transition: width .3s;
}


.underline-hover:hover::after {
    width: 100%;
}


#contact-wrapper {
    background-color: var(--white);
    color: var(--black);
    padding: 7px 18px;
    border-radius: 10px;
}

#contact-wrapper:hover {
    background-color: var(--black);
    color: var(--white);
    cursor: pointer;
}

body {
    background-color: var(--black);
    color: var(--white);
    
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    color: var(--cream);  
    position: relative;          /* so the pseudo‑element can sit on top */
    overflow: hidden;            /* trims any spill‑over blur */
    isolation: isolate;          /* keeps blend‑modes from leaking upward */

}

.hero::before{
  content: "";
  position: absolute;
  inset: -2%;                 /* extra size so movement never shows edges */
  z-index: -1;                 /* stays behind your content */

  /* Two radial gradients give a richer look */
  background:
      radial-gradient(circle at 30% 30%,
                       rgba(161, 23, 30, 0.65) 0%,
                       rgba(139, 0, 28, 0.45) 45%,
                       transparent 70%),
      radial-gradient(circle at 70% 70%,
                       rgba(139, 0, 28, 0.60) 0%,
                       rgba(228, 32, 43, 0.40) 45%,
                       transparent 70%);

  filter: blur(120px);
  mix-blend-mode: screen;      /* lets it glow over the background */
  animation: moveGlow 18s linear infinite;
}

/* Keyframes: slow drift & rotation for subtle motion */
@keyframes moveGlow{
  0%   {transform: translate(0%, 0%)   rotate(180deg);}
  50%  {transform: translate(25%, -15%) rotate(0deg);}
  100% {transform: translate(0%, 0%)   rotate(360deg);}
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:3rem;                            
  background:linear-gradient(
              to bottom,
              rgba(10,10,10,0) 0%,        /* fully transparent at the start */
              #0A0A0A 100%);              /* ends in the exact about‑section color */
  pointer-events:none;                    /* keeps it purely decorative */
}

.hero-title {
    margin: 0;
    font-size: 10rem;
}

.hero-title::after {
    content: '2025';
    font-size: 4rem;
    position: relative;
    top: -8rem;
    right: -3.6rem;
    line-height: normal;
    
}

.hero-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    margin-top: 220px;
    line-height: 80px;
}

.hero-subheading {
    margin-top: 150px;
    text-align: center;
}

.heading {
    font-family: var(--cormorant);
    font-weight: lighter;
}

.cursive-text {
    font-family: var(--monsieur);
    font-size: 11rem;
    font-weight: 100;
}

.normal-text {
    font-family: var(--tenor-sans);
    font-size: 2.2rem
}

.arial-text {
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
    font-size: 1.2rem;
    margin: 10px 0;
    color: var(--gray);
}


/* about */
#about {
   background-color: #0A0A0A;
   height: 115vh;
   
}

.header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-top: 150px;
}

.header-title {
    font-size: 9rem;
}

.about-title {
    /* background-color: orange; */
    max-width: 550px;
    width: 100%;
    margin-bottom: 100px;

}

.about-title::before {
    content: ' ';
    display: inline;
    width: 8px;
    height: 8px;
    margin-right: 50px;
}

/* line below about me */
.about-title::after {
    content: '';
    display: block;
    width: inherit;
    height: 1px;
    background-color: var(--white);
    border-radius: 20px;
    position: relative;
    top: -40px;
}

.about-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 50px;
    
}

.about-text {
    /* width: 50%; */
    width: 50%;
    max-width: 500px;
}

.about-image {
    max-width: 480px;
    max-height: 600px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--burgundy) 0px 0px 500px 50px;

    position: relative;
    top: -105px;
    /* margin-left: 100px; */
}

.certifications-container {
    display: flex;
    justify-content: flex-end;
    margin: 50px 0 0;
}

.about-nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    background-color: var(--burgundy);
    border-radius: 8px;
    padding: 5px;
}

.about-nav {
    background-color: var(--burgundy);
    font-family: Arial, Helvetica, sans-serif;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: #7A7979;
}

#about-me-btn {
    color: var(--cream);
}

.about-paragraph {
    font-size: 1.7rem;
    letter-spacing: 1px;
    text-align: justify;
    margin-top: 50px;
    color: var(--cream);
}

#about-text-placeholder {
    max-height: 100%; 
    overflow-y: auto;
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
    position: relative;
}

#about-me-extra {
    overflow: hidden;
    max-height: 0;                  
    opacity: 0;
    transition: max-height .4s ease, opacity .4s ease;
}

#about-text-placeholder::-webkit-scrollbar {
    width: 6px;
}

#about-text-placeholder::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

/* Make certification links blue‑with‑underline */
ul.cert-list a {
  color: #4a85e4;          
  text-decoration: underline;
  font-size: 1.5rem;
}

/* Optional: darker blue on hover / focus */
ul.cert-list a:hover,
ul.cert-list a:focus {
  color: #0B0080;          
}

.cert-text {
    background-color: var(--gray);
    width: fit-content;
    font-size: 2rem;
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--black);
    letter-spacing: 1px;
}

.cert-text:hover {
    background-color: var(--black);
    color: var(--white);
}

.dark-text {
    color: var(--black);
    font-weight: 600;
}

#works {
    height: fit-content;
    margin-bottom: 100px;
}


.work-title-container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding-left: 150px;
    padding-top: 100px;
}

.works-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 60px;
    flex-wrap: wrap;
}

.work-card {
    max-width: 350px;
    max-height: 600px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--cream);
    border-radius: 15px;
    margin-top: 100px;
    margin-bottom: 50px;

    transition: 0.5s ease-in-out 0ms
}

.work-card:hover {
    box-shadow: 0 0 15px 10px var(--burgundy);
    cursor: pointer;
    transform: scale(1.02);
}

.work-image {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.work-text {
    border: 1px solid var(--cream);
    border-radius: 0 0 15px 15px;
    height:100%;
    padding: 20px;
    background-color: #0A0A0A;
    color: var(--cream);
}

.project-title {
    font-size: 2.5rem;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 20px;
    width: 100%;
    height: 100px;
}

.project-description {
    font-size: 1.5rem;
    font-family: var(--tenor-sans);
    margin-bottom: 20px;
    width: 100%;
    height: 180px;   
    text-align: justify; 
}

#contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;

    /* background: url('./assets/footer-img.jpg'); */
    background-color: var(--cream);
    position: relative;     /* so the blur can attach */
    overflow: hidden;       /* trims any overspill */
    isolation: isolate;
}

/* ── 2 ▸ moving radial‑blur backdrop (burgundy ↔︎ red) ── */
#contact::before{
  content:"";
  position:absolute;
  inset:-1%;             /* oversize canvas so animation never shows edges */
  z-index:-1;             /* sits behind all contact content */

  background:
      radial-gradient(circle at 30% 30%,
                       rgb(75, 1, 5) 0%,
                       rgb(139, 0, 28) 45%,
                       transparent 70%),
      radial-gradient(circle at 70% 70%,
                       rgb(139, 0, 28) 0%,
                       rgb(228, 32, 42) 45%,
                       transparent 70%);

  filter: blur(120px);
  mix-blend-mode: multiply;      /* lets the rich reds tint the cream */
  animation: moveGlow 20s linear infinite;  /* reuse the hero keyframes */
}

/* ── 3 ▸ (already in your CSS) drifting keyframes ───── */
@keyframes moveGlow{
  0%   { transform: translate(-15%,  0%) rotate(0deg);   }
  25%  { transform: translate( 0%, 10%) rotate(90deg);  }
  50%  { transform: translate(15%,  0%) rotate(180deg); }
  75%  { transform: translate( 0%,  10%) rotate(270deg); }
  100% { transform: translate(-15%, 0%) rotate(360deg); }
}

.contact-heading {
    margin-top: 350px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 90px;
    
}

.contact-title {
    font-size: 9rem;
}

.contact-text-container {
    text-align: center;
    margin-top: 100px;
}

.contact-text {
    font-size: 2rem;
    font-family: var(--tenor-sans);
    margin-bottom: 15px;
}

.contact-email {
    font-size: 2rem;
    letter-spacing: 1px;
    font-family: var(--tenor-sans);
}

.contact-icons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-direction: column;
    width: fit-content;
    position: relative;
    top: -220px;
    left: 50px;
    z-index: 1;
}

.contact-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border: 1px solid var(--gray);
    border-radius: 50%;
    background-color: var(--cream);
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);   /* x‑offset | y‑offset | blur | color */
    cursor: pointer;
    transition: 0.5s ease-in-out 0ms
}

.contact-icons-container:hover {
    box-shadow: 0 4px 10px var(--burgundy);
    cursor: pointer;
    transform: scale(1.1);
}

.tech-icons-container {
    width: 100%;
    height: fit-content;
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.tech-icons {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--gray);
    background-color: var(--cream);
    display: flex;
    justify-content: center;
    align-items: center;

}

.image-icons {
    width: 50px;
    height: 50px;
}

.tech-image-icons {
    width: 40px;
    height: 40px;
}

.large-icons {
    width: 30px;
    height: 30px;
}

/* 2a. initial state (off‑screen & invisible) */
.hidden {
  opacity: 0;
  transform: translateY(24px);   /* slide up from 24 px below */
  transition: opacity 1s ease-out, transform 0.9s ease-out;
}

/* 2b. final state once in view */
.show {
  opacity: 1;
  transform: scale(0.95);
}

@media only screen and (max-width: 992px) {
    .about-nav-container {
        gap: 15px;
        padding: 5px;
    }

    .about-nav {
        font-size: 1.8rem;
        color: #7A7979;
        background-color: black;
        padding: 2px 10px;
        width: 155px;
        border-radius: 5px;
    }

    .about-image {
        max-width: 380px;
        max-height: 500px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: var(--burgundy) 0px 0px 500px 50px;
        margin-top: 100px;
    }
}


/* medium devices */
@media only screen and (max-width: 768px) {
    /* nav */
    header {
        padding: 50px 70px;
    }

    .logo-title {
        font-size: 2rem;
        margin-left: 0px;
    }

    .nav-links {
        display: flex;
    }

    nav {
        max-width: 700px;
    }
    nav > ul {
        display: flex;
        font-size: 1.5rem;
    }

    #contact-wrapper {
        padding: 7px 15px;
    }

    /* home section */
    .hero-title {
        margin: 0;
        font-size: 8rem;
    }

    .hero-title::after {
        content: '2025';
        font-size: 2.7rem;
        top: -5rem;
        left: 1rem;
    }

    .hero-heading {
        margin-left: 15px;
        margin-top: 270px;
        line-height: 30px;
    }

    .hero-subheading {
        margin-top: 190px;
        text-align: center;
    }

    .cursive-text {
        font-family: var(--monsieur);
        font-size: 7rem;
        font-weight: 100;
    }

    .normal-text {
        font-family: var(--tenor-sans);
        font-size: 1.6rem
    }

    /* about section */
    #about {
        background-color: #0A0A0A;
        height: 190vh;
    }

    .header-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding-top: 150px;
        margin-bottom: 120px;
    }

    .header-title {
        font-size: 6.5rem;
    }

    .about-title {
        max-width: 550px;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 0px;
    }

    /* line below about me */
    .about-title::after {
        display: none;
    }

    .about-title::before {
        display: none;
    }

    .about-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }

    .about-image {
        max-width: 450px;
        max-height: 550px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: var(--burgundy) 0px 0px 500px 50px;

        position: relative;
        top: -105px;
        margin-top: 0px;
    }

    .about-text {
        /* width: 50%; */
        width: 70%;
    }

    .about-paragraph {
        font-size: 1.7rem;
        letter-spacing: 1px;
        text-align: justify;
        margin-top: 50px;
        color: var(--cream);
    }

    #about-me-extra {
        font-size: 1.5rem;
        overflow: hidden;
        max-height: 0;                  
        opacity: 0;
        transition: max-height .4s ease, opacity .4s ease;
    }

    #about-text-placeholder {
        max-height: 100%; 
        overflow-y: auto;
        transition: opacity 0.4s ease-in-out;
        opacity: 1;
        position: relative;
    }

    .about-nav-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        background-color: var(--burgundy);
        border-radius: 8px;
        padding: 5px;
    }

    .about-nav {
        background-color: var(--burgundy);
        font-family: Arial, Helvetica, sans-serif;
        border: none;
        cursor: pointer;
        font-size: 1.5rem;
        color: #7A7979;
        background-color: black;
        padding: 2px 10px;
        width: 155px;
        border-radius: 5px;
    }

    #about-me-btn {
        color: var(--white);
    }


    /* my works section */
    #works {
        height: fit-content;
        margin-bottom: 100px;
    }


    .work-title-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
        padding-top: 130px;
        margin-bottom: 30px;
    }

    .works-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 50px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .work-card {
        max-width: 350px;
        max-height: 600px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid var(--cream);
        border-radius: 15px;
        margin-top: 0px;
        margin-bottom: 50px;
        transition: 0.5s ease-in-out 0ms
    }

    .work-text {
        border: 1px solid var(--cream);
        border-radius: 0 0 15px 15px;
        height:100%;
        padding: 20px;
        background-color: #0A0A0A;
        color: var(--cream);
    }

    .project-title {
        font-size: 2rem;
        font-family: Arial, Helvetica, sans-serif;
        margin-bottom: 20px;
        width: 100%;
        height: 50px;
    }

    .project-description {
        font-size: 1.4rem;
        font-family: var(--tenor-sans);
        margin-bottom: 20px;
        width: 100%;
        height: 180px;   
        text-align: justify; 
    }

    /* contact section */
    #contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        min-height: 100vh;
        background-color: var(--cream);
        position: relative;     
        overflow: hidden;      
        isolation: isolate;
        padding-bottom: 100px;
    }

    .contact-heading {
        margin-top: 220px;
        text-align: center;
        margin-bottom: 0px;
        line-height: 50px;
        width: 80%;
        
    }

    .contact-title {
        font-size: 5rem;
    }

    .contact-text-container {
        text-align: center;
        margin-top: 100px;
    }

    .contact-text {
        font-size: 1.4rem;
        font-family: var(--tenor-sans);
        margin-bottom: 1px;
    }

    .contact-email {
        font-size: 1.4rem;
        letter-spacing: 1px;
        font-family: var(--tenor-sans);
    }

    .contact-icons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: end;
        gap: 20px;
        width: 100%;
        height: fit-content;
        position: relative;
        top: 30px;
        left: 0;
        z-index: 1;
    }

    .contact-icons-container {
        width: 70px;
        height: 70px;
    }

    .contact-icons-container:hover {
        box-shadow: 0 4px 10px var(--burgundy);
        cursor: pointer;
        transform: scale(1.1);
    }

    .image-icons {
        width: 40px;
        height: 40px;
    }
}

/* mobile devices */
@media only screen and (max-width: 601px) {
    /* nav */
    header {
        padding: 50px;
    }

    .logo-title {
        font-size: 1.9rem;
        margin-left: 0px;
    }

    .nav-links {
        display: none;
    }

    /* home section */
    .hero-title {
        margin: 0;
        font-size: 5rem;
    }

    .hero-title::after {
        content: '2025';
        font-size: 2rem;
        top: -4rem;
        left: -1rem;
    }

    .hero-heading {
        margin-left: 15px;
        margin-top: 210px;
        line-height: 30px;
    }

    .hero-subheading {
        margin-top: 220px;
        text-align: center;
    }

    .cursive-text {
        font-family: var(--monsieur);
        font-size: 6rem;
        font-weight: 100;
    }

    .normal-text {
        font-family: var(--tenor-sans);
        font-size: 1.6rem
    }

    /* about section */
    #about {
        background-color: #0A0A0A;
        height: 180vh;
        
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 100px;
        margin-bottom: 100px;
    }

    .header-title {
        font-size: 5rem;
    }

    .about-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        width: 100%;
        margin-bottom: 0px;
    }

    .about-title::before {
        display: none;
    }

        /* line below about me */
    .about-title::after {
        display: none;
    }

    .about-content {
        width: 100%;
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-paragraph {
        font-size: 1.7rem;
        letter-spacing: 1px;
        text-align: justify;
        margin-top: 50px;
        color: var(--cream);
        width: 100%;
    }

    .about-text {
        width: 80%;
        /* padding: 20px; */
        margin-top: -80px;
    }

    .about-image {
        max-width: 300px;
        max-height: 500px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: var(--burgundy) 0px 0px 500px 5px;
        position: relative;
        top: -105px;
        margin-bottom: 0;
    }

    .about-nav-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
        background-color: var(--burgundy);
        border-radius: 8px;
        padding: 5px;
    }

    .about-nav {
        background-color: var(--burgundy);
        font-family: Arial, Helvetica, sans-serif;
        border: none;
        cursor: pointer;
        font-size: 1.3rem;
        color: #7A7979;
        background-color: black;
        padding: 2px 12px;
        width: 120px;
        border-radius: 5px;
    }

    #about-text-placeholder {
        max-height: 100%; 
        overflow-y: auto;
        transition: opacity 0.4s ease-in-out;
        opacity: 1;
        position: relative;
        font-size: 1.5rem;
    }

    /* my works section */
    #works {
        height: fit-content;
        margin-bottom: 100px;
    }


    .work-title-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
        padding-top: 130px;
        margin-bottom: 30px;
    }

    .works-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 50px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .work-card {
        max-width: 350px;
        max-height: 600px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid var(--cream);
        border-radius: 15px;
        margin-top: 0px;
        margin-bottom: 50px;
        transition: 0.5s ease-in-out 0ms
    }

    .work-text {
        border: 1px solid var(--cream);
        border-radius: 0 0 15px 15px;
        height:100%;
        padding: 20px;
        background-color: #0A0A0A;
        color: var(--cream);
    }

    .project-title {
        font-size: 2rem;
        font-family: Arial, Helvetica, sans-serif;
        margin-bottom: 20px;
        width: 100%;
        height: 50px;
    }

    .project-description {
        font-size: 1.4rem;
        font-family: var(--tenor-sans);
        margin-bottom: 20px;
        width: 100%;
        height: 180px;   
        text-align: justify; 
    }

    /* contact section */
    #contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        min-height: 100vh;
        background-color: var(--cream);
        position: relative;     
        overflow: hidden;      
        isolation: isolate;
        padding-bottom: 100px;
    }

    .contact-heading {
        margin-top: 220px;
        text-align: center;
        margin-bottom: 0px;
        line-height: 50px;
        width: 80%;
        
    }

    .contact-title {
        font-size: 5rem;
    }

    .contact-text-container {
        text-align: center;
        margin-top: 100px;
    }

    .contact-text {
        font-size: 1.4rem;
        font-family: var(--tenor-sans);
        margin-bottom: 1px;
    }

    .contact-email {
        font-size: 1.4rem;
        letter-spacing: 1px;
        font-family: var(--tenor-sans);
    }

    .contact-icons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: end;
        gap: 20px;
        width: 100%;
        height: fit-content;
        position: relative;
        top: 30px;
        left: 0;
        z-index: 1;
    }

    .contact-icons-container {
        width: 70px;
        height: 70px;
    }

    .contact-icons-container:hover {
        box-shadow: 0 4px 10px var(--burgundy);
        cursor: pointer;
        transform: scale(1.1);
    }

    .image-icons {
        width: 40px;
        height: 40px;
    }
}



