@font-face {
    font-family: 'bianzhidai-Base';
    src: url('fonts/bianzhidai-Base.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bianzhidai-back';
    src: url('fonts/bianzhidai_COLR-back.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helvetica-neue-medium';
    src: url('fonts/helvetica-neue-5/HelveticaNeueMedium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helvetica-neue-bold';
    src: url('fonts/helvetica-neue-5/HelveticaNeueBold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helvetica-neue-italic';
    src: url('fonts/helvetica-neue-5/HelveticaNeueItalic.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helvetica-neue-light-italic';
    src: url('fonts/helvetica-neue-5/HelveticaNeueLightItalic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helvetica-neue-light';
    src: url('fonts/helvetica-neue-5/HelveticaNeueLight.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hikarumono';
    src: url('fonts/HIKARUMONO-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'futura-med';
    src: url('fonts/Futura\ Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'spartan-bold';
    src: url('fonts/LeagueSpartan-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotomono-med';
    src: url('fonts/RobotoMono-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'schoolbell-reg';
    src: url('fonts/Schoolbell-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'jetbrainsmono';
    src: url('fonts/JetBrainsMono.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'pinyonscript';
    src: url('fonts/PinyonScript-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppins-extrabold';
    src: url('fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'germen';
    src: url('/fonts/FlorDeRuina-Germen.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background-color: #101010;
    position: relative;
}

/* Repeating background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/tume-taust.jpg');
    /* Your pattern image */
    background-repeat: repeat;
    background-size: 1000px 1000px;
    /* Adjust size as needed */
    opacity: 0.9;
    /* Subtle pattern */
    mix-blend-mode: difference;
    /* This inverts based on content below */
    pointer-events: none;
    /* Allows clicking through */
    z-index: 9999;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #101010;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 10px;
}

.loading-gif {
    width: 300px;
    height: auto;
    display: block;
    margin: 0;
    opacity: .7;
}

.loading-text {
    color: #C7C7C7;
    font-size: 14px;
    margin: 20px;
    letter-spacing: 2px;
    font-family: helvetica-neue-light, sans-serif;
}

.dots::after {
    content: '';
    animation: dots 1s steps(4, end) infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

@media (max-width: 768px) {
    .loading-gif {
        width: 200px;
    }

    .loading-text {
        font-size: 14px;
    }
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #C7C7C7;
}

.font1 {
    font-family: 'bianzhidai-back', sans-serif;
    color: #b4b2b2;
    letter-spacing: 1px;
}

.font2 {
    font-family: 'helvetica-neue-light', sans-serif;
    color: #C7C7C7;
    letter-spacing: 1px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    padding-top: 10px;
    padding-bottom: 8px;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 100;
    font-family: 'helvetica-neue-light', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    border: #C7C7C7 solid 1px;
    backdrop-filter: blur(10px);
}

body.index-page .navbar {
    position: absolute;
    top: auto;
    bottom: 20px;
    transition: all 0.3s ease;
}

section {
    padding: 0px 20px;
    margin-top: 20px;
}

body.index-page.scrolled .navbar {
    position: fixed;
    top: 20px;
    bottom: auto;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    margin-right: 100px;
    margin-left: 40px;
    font-size: 36px;
    margin-bottom: 700px;
}

.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    color: #C7C7C7;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-arrow.visible {
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero h1 span,
.hero .sub span {
    opacity: 0;
}

.hero h1 span.typing,
.hero .sub span.typing {
    opacity: 1;
}

.sub {
    font-size: 28px;
}

#hero-text {
    max-width: 1000px;
}

/* Interest Box */
.interest {
    margin-top: 48px;
    font-size: 24px;
    color: #C7C7C7;
    letter-spacing: 1px;
    font-family: 'helvetica-neue-light', sans-serif;
    border: 1px solid #fff;
    padding: 12px;
    margin-left: auto;
    width: fit-content;
    max-width: 100%;
    min-height: 60px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.interest.visible {
    opacity: 1;
}

#variable {
    margin: 0;
    display: inline-block;
    white-space: nowrap;
    text-align: left;
}

/* index page Project Cards */
.project-card {
    border: 1px solid #C7C7C7;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: fit-content;
    margin: 80px auto;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;

}

.project-card:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.project-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-tag {
    font-family: 'helvetica-neue-light', sans-serif;
    font-size: 14px;
    color: #C7C7C7;
    margin-bottom: 0px;
    letter-spacing: 1px;
}

.project-description {
    font-family: 'helvetica-neue-light', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #C7C7C7;
}

.disclaimer {
    text-align: center;
    padding: 10px;
    padding-left: 20px;
    font-family: helvetica-neue-light,
        sans-serif;
    font-size: 24px;
    color: #C7C7C7;
    text-shadow: 0 0 10px #C7C7C7,
        0 0 10px #565656,
        0 0 30px #939393;
}


.project-right {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    transition: box-shadow 0.3s ease,
        border-color 0.3s ease
}

.click-me-light {
    position: absolute;
    top: 20px;
    right: 600px;
    /* Position inside the video area */
    color: #bfbfbf;
    text-shadow: 0 0 10px #C7C7C7,
        0 0 20px #C7C7C7,
        0 0 30px #C7C7C7;
    font-size: 14px;
    font-family: helvetica-neue-med, sans-serif;
    z-index: 10;
}

.click-me-dark {
    position: absolute;
    top: 20px;
    right: 600px;
    /* Position inside the video area */
    color: #1a1a1a;
    text-shadow: 0 0 10px #C7C7C7,
        0 0 20px #393838,
        0 0 30px #323232;
    font-size: 14px;
    font-family: helvetica-neue-med, sans-serif;
    z-index: 10;
}

.project-right:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.203),
        0 0 40px rgba(255, 255, 255, 0.2);
}


.project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #101010;
}

.project-video-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #101010;
}

.project-video:hover {
    transition: transform 0.6s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.2);
}

#pulla-project {
    border: 0px;
}

.project-embed {
    overflow: hidden;
}

.project-embed iframe {
    transform: scale(1) translateX(0px);
}

/* index page Project Titles */
.vator-title {
    font-family: 'hikarumono', sans-serif;
    font-size: 110px;
    font-weight: normal;
    letter-spacing: 8px;
    margin-bottom: 40px;
    line-height: 1;
}

.vator-title a {
    color: #C7C7C7;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.vator-title a:hover {
    color: #fff;
}

.lapimaa-title {
    font-family: 'futura-med', sans-serif;
    font-size: 90px;
    font-weight: normal;
    letter-spacing: 10px;
    margin-bottom: 40px;
    line-height: 1;
}

.lapimaa-title a {
    color: #C7C7C7;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.lapimaa-title a:hover {
    color: #fff;
}

.adamsoneric-title {
    font-family: 'schoolbell-reg', sans-serif;
    font-size: 90px;
    font-weight: normal;
    letter-spacing: 10px;
    margin-bottom: 40px;
    line-height: 1;
}

.adamsoneric-title a {
    color: #C7C7C7;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.adamsoneric-title a:hover {
    color: #fff;
}

.asciilm-title {
    font-family: 'jetbrainsmono', sans-serif;
    font-size: 70px;
    font-weight: normal;
    letter-spacing: 10px;
    margin-bottom: 40px;
    line-height: 1;
}

.asciilm-title a {
    color: #C7C7C7;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.asciilm-title a:hover {
    color: #fff;
}

.pulla-title img {
    height: 90px;
}

.pulla-title a {
    color: #C7C7C7;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.pulla-title a:hover {
    color: #fff;
}

.piste-title {
    font-family: 'pinyonscript', cursive;
    font-size: 200px;
    font-weight: normal;
    margin-bottom: 80px;
    margin-left: 40px;
    line-height: .5;

}

.piste-title a {
    color: #C7C7C7;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.piste-title a:hover {
    color: #fff;
}

#pisteproject {
    border: 1px solid #C7C7C7;
}

.voodi-title {
    font-family: 'germen', sans-serif;
    font-style: italic;
    font-size: 60px;
    letter-spacing: 2px;
    line-height: 1;
    color: #C7C7C7;
    margin-bottom: 10px;
}

.voodi-title a {
    color: #C7C7C7;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.voodi-title a:hover {
    color: #fff;
}

.varia-title-page {
    font-size: clamp(4rem, 10vw, 10rem);
    display: flex;
    gap: 0.05em;
    line-height: 1;
    color: #C7C7C7;
    max-height: max-content;
}

/* Individual letters */
.varia-title-page span {
    display: inline-block;
    transition: font-family 0.3s ease, transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.varia-title-page a {
    font-size: clamp(3rem, 8vw, 6rem);
    display: flex;
    gap: 0.05em;
    line-height: 1;
    text-decoration: none;
    color: inherit;
}

.varia-title-page a span {
    display: inline-block;
    transition: font-family 0.3s ease, transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.varia-title-page a:hover {
    color: #fff;
}

/* About Me & CV Section */
.about-cv-section {
    padding: 0;
    margin-top: 20px;
}

/* About Me Top Section */
.about-section {
    background-color: #b8b8b8;
    /* Add your image path */
    background-size: cover;
    /* Scales image to cover entire section */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    align-items: start;
}

.about-left {
    display: flex;
    grid-template-rows: auto 1fr;
    flex-direction: column;
    margin: 40px;
}

.about-title {
    font-size: 96px;
    /* Changed from 72px to match your sizes */
    letter-spacing: 4px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 10px;
    rotate: 10deg;
}

.ab-font1 {
    font-family: 'helvetica-neue', sans-serif !important;
    /* Changed from 'back' to 'Base' */
    color: transparent !important;
    -webkit-text-stroke: 1px #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
}

.ab-font2 {
    font-family: 'helvetica-neue', sans-serif !important;
    color: transparent !important;
    font-style: italic;
    -webkit-text-stroke: 1px #000000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-self: end;
    align-items: end;
    /* Align photo to bottom */
}

.about-text {
    max-width: 300px;
    /* Align text to bottom */
}

.about-text p {
    font-family: 'helvetica-neue-light', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #101010;
    margin: 0;
}

.about-text em {
    font-family: 'helvetica-neue-light', sans-serif;
    font-style: italic;
}

.about-photo {
    justify-self: end;
    opacity: .9;
}

.about-photo:hover {
    justify-self: end;
    animation: spin 2s cubic-bezier(.2, .2, .2, .2) infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.about-photo img {
    width: 160px;
    height: 220px;
    object-fit: cover;
    border: 1px solid #101010;
    display: block;
}

/* Right side - interests */
.interests {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
    align-self: end;
    /* tweak 8–16px if needed */
}

.interest-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.interest-label {
    font-family: 'helvetica-neue-light', sans-serif;
    font-size: 18px;
    color: #101010;
    min-width: 80px;
    margin-left: auto;
}

.interest-box-about {
    width: fit-content;
    border: 1px solid #838282;
    padding: 10px 10px;
    background-color: transparent;
    min-height: 50px;
    display: flex;
    align-items: center;
    min-width: 150px;
}

#variable-am,
#variable-do,
#variable-love {
    font-family: 'bianzhidai-back', sans-serif;
    font-size: 20px;
    color: #22222e;
    display: inline-block;
    white-space: nowrap;
}

/* CV Section */
.cv-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 40px;
    margin-top: 40px;
}

.cv-card {
    border: 1px solid #C7C7C7;
    padding: 60px 40px;
}

.cv-title {
    font-family: 'bianzhidai-back', sans-serif;
    font-size: 60px;
    color: transparent;
    letter-spacing: 4px;
    margin-bottom: 40px;
    line-height: 1;
}

.cv-content {
    border: 1px solid #C7C7C7;
    padding: 30px;
    background-color: transparent;
}

.cv-entry {
    margin-bottom: 30px;
}

.cv-entry:last-child {
    margin-bottom: 0;
}

.cv-entry h3 {
    font-family: 'helvetica-neue-light', sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #C7C7C7;
    margin-bottom: 5px;
    line-height: 1.4;
}

.cv-entry .current-star {
    color: #C7C7C7;
    margin-right: 2px;
}

.cv-entry .divider {
    color: #888;
    margin: 0 5px;
}

.cv-entry .title {
    color: #888;
}

.cv-entry .date {
    font-family: 'helvetica-neue-light-italic', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0;
}

.current-note {
    font-family: 'helvetica-neue-light', sans-serif;
    font-size: 11px;
    color: #888;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-family: 'helvetica-neue-light', sans-serif;
    font-size: 12px;
    color: #C7C7C7;
    border-top: 1px solid #C7C7C7;
    margin-top: 40px;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: #b8b8b8;
    /* Add your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.credit {
    text-align: center;
    padding: 20px;
    font-family: helvetica-neue-light, sans-serif;
    font-size: 24px;
    color: #C7C7C7;
    text-shadow: 0 0 10px #C7C7C7,
        0 0 10px #565656,
        0 0 30px #939393;
}

.e-mail {
    font-family: 'helvetica-neue', sans-serif;
    font-size: 100px;
    letter-spacing: 5px;
    -webkit-text-stroke: 1px #555363;
    color: transparent;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    display: inline-block;
    transition: text-shadow 0.3s ease;
}

.e-mail:hover {
    text-shadow: 0 0 10px #e6e6ec,
        0 0 20px #e6e6ec,
        0 0 30px #e6e6ec;
}

.e-mail span {
    display: inline-block;
    animation: glitchJump 3s ease-in-out infinite;
}

@keyframes glitchJump {

    0%,
    90%,
    100% {
        transform: translateY(0);
    }

    5% {
        transform: translateY(-20px);
    }

    10% {
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE STYLES - ALL MEDIA QUERIES
   ======================================== */

/* ====== TABLET & MOBILE (max-width: 968px) ====== */
@media (max-width: 968px) {
    .hero {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 20px;
        margin-right: 20px;
        padding: 20px;
        font-size: 20px;
    }

    #hero-text {
        font-size: 36px;
    }

    /* INDEX PAGE - Project Cards */
    .project-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        margin: 20px 20px;
    }

    .project-right {
        width: 100%;
        max-width: 100%;
    }

    .project-video {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }

    .project-video-contain {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }

    /* INDEX PAGE - Project Titles */
    .vator-title {
        font-size: 60px;
        letter-spacing: 4px;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    .lapimaa-title {
        font-size: 50px;
        letter-spacing: 4px;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    .adamsoneric-title {
        font-size: 50px;
        letter-spacing: 4px;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    .asciilm-title {
        font-size: 40px;
        letter-spacing: 4px;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    .pulla-title img {
        height: 50px;
        margin-top: 10px;
    }

    .piste-title {
        font-size: 120px;
        margin-left: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
        ;
    }

    .voodi-title {
        font-size: 40px;
        letter-spacing: 1px;
        margin-top: 30px;
    }

    .varia-title-page {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    /* ABOUT ME SECTION */
    .about-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 40px 20px;
    }

    .about-left {
        margin: 20px;
    }

    .about-title {
        font-size: 60px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-photo {
        justify-self: center;
    }

    .about-text {
        max-width: 100%;
    }

    .interests {
        margin: 20px;
        align-self: start;
    }

    /* CV SECTION */
    .cv-section {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .cv-title {
        font-size: 48px;
    }

    /* CONTACT SECTION */
    .contact {
        margin-top: 20px;
        margin-bottom: 20px;
        background-color: transparent;
    }

    .credit {
        font-size: 18px;
    }

    .disclaimer {
        font-size: 18px;
    }

    .e-mail {
        padding: 0 5px;
        font-size: 24px;
        font-family: helvetica-neue, sans-serif;
        color: transparent;
        -webkit-text-stroke: 0.5px #C7C7C7;
    }

    .e-mail:hover {
        text-shadow: none;
    }
}

/* ====== MOBILE ONLY (max-width: 600px) ====== */
@media (max-width: 600px) {

    /* NAVBAR */
    .navbar {
        font-size: 12px;
        padding: 10px 20px;
        margin-left: 20px;
        margin-right: 20px;
        letter-spacing: 1px;
    }

    body.index-page .navbar {
        position: absolute;
        bottom: 70px;
        top: auto;
    }

    body.index-page.scrolled .navbar {
        position: fixed;
        top: 20px;
        bottom: auto;
    }

    /* HERO SECTION */
    .hero-container {
        height: 100vh;
        min-height: 850px;
        display: flex;
        align-items: flex-start;
        justify-content: left;
        position: relative;
        padding-top: 10px;
    }

    .hero {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 20px;
        margin-right: 20px;
        padding: 20px;
        font-size: 24px;
    }

    .sub {
        font-size: 20px;
    }

    /* INTEREST BOX */
    .interest {
        font-size: 18px;
        margin-top: 30px;
        padding: 10px;
        height: 100px;
        margin-right: 10px;
        margin-left: 0px;
        overflow: hidden;
    }

    .project-video-contain {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }

    .disclaimer {
        font-size: 18px;
    }

    #variable {
        white-space: nowrap;
    }

    /* PROJECT CARDS */
    .projects-container {
        background-color: #101010;
        position: relative;
        z-index: 1;
    }

    .project-tag {
        font-size: 12px;
    }

    .project-description {
        font-size: 14px;
    }

    /* PROJECT TITLES */
    .pulla-title img {
        padding-top: 10px;
        height: 50px;
    }

    .piste-title {
        font-size: 70px;
        margin-left: 25px;
        line-height: 0.2;
    }

    .voodi-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    /* ABOUT ME SECTION */
    .about-left {
        margin: 0px 10px;
    }

    .about-title {
        font-size: 48px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .about-content {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .about-text {
        text-align: left;
        max-width: 100%;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-photo {
        justify-self: flex-start;
        flex-shrink: 0;
    }

    .about-photo img {
        width: 100px;
        height: 140px;
    }

    .interests {
        margin: 20px 10px;
        width: calc(100% - 20px);
    }

    .interest-item {
        flex-direction: row;
        align-items: center;
        width: fit-content;
    }

    .interest-label {
        font-size: 16px;
        min-width: 60px;
        margin-left: 0;
    }

    .interest-box-about {
        flex: 1;
        min-width: 100px;
        padding: 8px;
        min-height: 40px;
    }

    #variable-am,
    #variable-do,
    #variable-love {
        font-size: 16px;
    }

    /* CV SECTION */
    .cv-card {
        padding: 30px 20px;
    }

    .cv-title {
        font-size: 36px;
    }

    .cv-section {
        margin-top: 20px;
    }

    /* CONTACT SECTION */
    .contact {
        margin-top: 20px;
        margin-bottom: 20px;
        background-color: transparent;
        margin-left: 0px;
        margin-right: 0px;
    }

    .credit {
        font-size: 18px;
    }

    .e-mail {
        padding: 0 5px;
        font-size: 24px;
        font-family: helvetica-neue, sans-serif;
        color: transparent;
        -webkit-text-stroke: 0.5px #C7C7C7;
    }

    .e-mail:hover {
        text-shadow: none;
    }
}