/* Block 1 with greetings */

.introduction-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 50px auto;
    height: 150vh;
}

.introduction-block .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto;
    position: sticky;
    top: 100px;
}

/* Block 2 with laptop */

.hero-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 200vh;
}

.laptop-container {
    position: sticky;
    top: 30px; /* Adjust based on your navbar height */
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 1;
}

.macBook {
    max-width: 80%;
    height: auto;
    position: relative;
    z-index: 1;
}

.screen-content {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 63%;
    height: 82%;
    overflow: hidden;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.screen-content .text {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 60%;
    margin-bottom: -20%;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
    will-change: transform;
}


@media (max-width: 860px) {
    .laptop-container {
        top: 30vh;
    }
}


/* Block 3 with description */

.description-block-1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    max-width: 100%;
    margin: 50px 50px auto 50px;
    height: auto;
}

.label-block {
    position: sticky;
    top: 0;

    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 60%;
}

.scrollable-options {
    width: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 200vh;
    gap: 50vh;
    margin: 40vh 0;
}

.scrollable-options .subLabel {

    font-weight: 500;
    /*font-size: 40px; */

    will-change: transform, opacity; /* Performance optimization */
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

@media (max-width: 860px) {
    .description-block-1, .description-block-3 {
        margin: auto 20px;
    }
}

/* block 4 with animations */
.description-block-2 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: start;
    margin: auto 50px;
    height: auto;
    gap: 10px;
}

.description-block-2 .scrollable-options {
    gap: 0;
    margin: 0;
    justify-content: space-around;
}

.description-block-2 .label-block {
    align-items: start;
}

canvas {
    width: auto;
    height: auto;
    max-width: 500px;
    display: block;
}

@media (max-width: 860px) {

    .description-block-1, .description-block-2 {
        flex-direction: column;
        gap: 20px;
        margin: auto 0;
    }

    .description-block-2 .scrollable-options {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;

        margin: 0 auto 40vh auto;
    }

    .description-block-1 .scrollable-options {
        align-items: center;
        margin: 0 auto;
        gap: 20vh;
    }

    canvas {
        width: 100%;
        height: 80vh; /* Maintain aspect ratio */
        max-height: 80vh; /* Smaller height on mobile */
        max-width: 90vw; /* Limit maximum width */
        margin: 0 auto; /* Center horizontally */
    }

    .description-block-1 .label-block, .description-block-2 .label-block {
        top: 50px;
        height: auto;
        text-align: center;

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

        max-width: 100%;
        width: 100%;
        padding: 20px 0;


        /*background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.9) 90%, rgba(255, 255, 255, 0) 100%);*/

        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.3);

        z-index: 2;
    }
}

/* Block 5 with blocks */

.description-block-3 {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 50px 20px auto 20px;

    height: 250vh;

    position: relative;
}

.grid-block {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    height: 70vh;
    gap: 10px;

    position: sticky;
    top: 80px;

    width: 100%;
    z-index: 2;
}

.row {
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
}

.grid-block .row {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 10px;
    width: 100%;
    align-items: stretch;
}

.grid-block .row:first-child {
    min-height: auto; /* Let it size to content */
}

.grid-block .row:first-child .break-down-block {
    min-height: unset; /* Remove minimum height constraint */
    height: auto; /* Match the label's height */
}

.break-down-block {
    width: 100%; /* Take full width of grid cell */
    min-height: 20vw;
    height: 100%;
    border-radius: 20px;
    will-change: transform, opacity, left, top;
    position: relative;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    transform-origin: center center;

    z-index: 1;
}

.row .subLabel {
    width: 100%;
    align-self: center; /* Center vertically */
    position: relative;
    text-align: center;
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
}


@media (max-width: 600px) {
    .description-block-3 .subLabel {
        font-size: 25px;
    }

    .row, .grid-block {
        gap: 10px;
    }

    .for-phone-only {
        display: flex;
    }
}

/* Block 6 with eye */

.description-block-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin: 100px 20px;
    height: 200vh;

    text-align: center;

}

.sticky-block {
    display: inherit;
    flex-direction: inherit;
    align-items: inherit;

    position: sticky;
    top: 80px;
    gap: 50px;
}

.highlight-text {
    font-size: 0.2em; /* Starting size */
    display: inline-block;
    transition: font-size 0.1s ease-out;
    transform-origin: left center;
}

.eye {
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
    max-width: 50vw;
}

/* block 7 with top skills */
.skills-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    min-height: 100vh;
    height: auto;
    width: 100%;

    text-align: center;
    margin: 100px auto;
}

.skills-container .label {
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    margin: 10px;

    border-radius: 37px;
}

/* SKILL V2 */


.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

@media (max-width: 850px) {
    .skills-grid {
        grid-template-columns: 1fr;
        margin: 20px auto;
    }

    .skills-grid .skill-block .skill-block-container {
        flex-direction: row-reverse;
        justify-content: end;
    }

    .skills-grid .skill-block {
        max-height: 200px;
    }

    .skill-block .skill-block-container img {
        width: 30%;
        height: auto;
    }
}

.skill-block {
    border-radius: 50px;
    border: 1px solid #FFF;
    background: rgba(241, 241, 241, 0.7);
    backdrop-filter: blur(9px);
    padding: 10px;
    width: 100%;
    max-width: 90%;
    height: auto;
    min-height: 100px;
    max-height: 130px;
    display: flex;
    transition: background 0.3s ease, transform 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

.skill-block-container {
    flex: 1;
    border-radius: 30px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: start;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: border-radius 0.3s ease;
}

.skill-block:hover .skill-block-container {
    border-radius: 35px;
}

@media (min-width: 850px) {
    .reversed {
        flex-direction: row-reverse;
        justify-content: end;
    }
}

.skill-block-container::before,
.skill-block-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.skill-block-container::before {
    opacity: 1;
}

.skill-block-container::after {
    opacity: 0;
}

.skill-block:hover .skill-block-container::before {
    opacity: 0;
    border-radius: 40px;
}

.skill-block:hover .skill-block-container::after {
    opacity: 1;
    border-radius: 35px;
}

.skill-block-container img {
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 30px;
    transition: transform 0.3s ease;
    /* Optimize rendering across browsers */
    image-rendering: crisp-edges; /* Firefox */
    -webkit-backface-visibility: hidden; /* Safari fix for smoother transitions */
    transform: translateZ(0); /* Force GPU acceleration on all browsers */
    will-change: transform; /* Hint for browser optimization */

    /* Safari-specific fixes */
    -webkit-perspective: 1000px; /* Safari rendering improvement */
    -webkit-font-smoothing: antialiased; /* Better text rendering near images */
}

.skill-block:hover img {
    transform: scale(1.05) translateX(-2px);
}

@media (min-width: 850px) {
    .skill-block:hover .reversed img {
        transform: scale(1.05) translateX(2px);
    }
}


.text-container {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
}

@media (min-width: 850px) {
    .skill-block:hover .text-container {
        transform: translateX(10px);
    }

    .skill-block:hover .reversed .text-container {
        transform: translateX(-10px);
    }

    .reversed .text-container {
        align-items: flex-end;
        text-align: right;
    }
}

@media (max-width: 850px) {
    .skill-block:hover .text-container {
        transform: translateX(-10px);
    }

    .text-container {
        align-items: flex-end;
        text-align: right;
    }
}


.skill-block .text-container .skill-text {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    transition: transform 0.3s ease;
}

.skill-block .text-container .skill-text-description {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    transition: transform 0.3s ease;
}

@media (max-width: 500px) {
    .skill-block .text-container .skill-text {
        font-size: 25px;
    }

    .skill-block .text-container .skill-text-description {
        font-size: 20px;
    }
}

.skill-block:hover {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 5px;
    margin: 5px;
}

/* Gradient background definitions needed outside the media query */

.swift-bg::before {
    background: linear-gradient(153deg, rgba(255, 119, 132, 0.40) 0%, rgba(255, 138, 120, 0.40) 100%);
}

.swift-bg::after {
    background: linear-gradient(153deg, rgba(255, 119, 132, 0.70) 0%, rgba(255, 138, 120, 0.70) 100%);
}

.swift {
    color: #861200;
}

.design-bg::before {
    background: linear-gradient(153deg, rgba(255, 148, 97, 0.40) 0%, rgba(255, 235, 87, 0.24) 100%);
}

.design-bg::after {
    background: linear-gradient(153deg, rgba(255, 148, 97, 0.70) 0%, rgba(255, 235, 87, 0.70) 100%);
}

.design {
    color: #A13400;
}

.apple-bg::before {
    background: linear-gradient(153deg, rgba(138, 170, 255, 0.40) 0%, rgba(0, 132, 255, 0.40) 100%);
}

.apple-bg::after {
    background: linear-gradient(153deg, rgba(138, 170, 255, 0.70) 0%, rgba(0, 132, 255, 0.70) 100%);
}

.apple {
    color: #004884;
}

.algo-bg::before {
    background: linear-gradient(153deg, rgba(168, 255, 198, 0.40) 0%, rgba(144, 183, 255, 0.40) 100%);

}

.algo-bg::after {
    background: linear-gradient(153deg, rgba(168, 255, 198, 0.70) 0%, rgba(144, 183, 255, 0.70) 100%);
}

.algo {
    color: #003087;
}

.dotnet-bg::before {
    background: linear-gradient(153deg, rgba(204, 209, 255, 0.50) 0%, rgba(82, 75, 237, 0.50) 61.06%, rgba(7, 0, 108, 0.50) 100%);
}

.dotnet-bg::after {
    background: linear-gradient(153deg, rgba(204, 209, 255, 0.70) 0%, rgba(82, 75, 237, 0.50) 61.06%, rgba(7, 0, 108, 0.70) 100%);
}

.dotnet {
    color: #280068;
}

.html-bg::before {
    background: linear-gradient(153deg, rgba(255, 189, 130, 0.40) 0%, rgba(255, 118, 96, 0.40) 100%);
}

.html-bg::after {
    background: linear-gradient(153deg, rgba(255, 189, 130, 0.70) 0%, rgba(255, 118, 96, 0.70) 100%);
}

.html {
    color: #991500;
}


/* Block 8 with projects */


/*.projects-container .label:first-child {*/
/*    z-index: 2;*/

/*    display: flex;*/
/*    text-align: center;*/
/*    align-content: center;*/

/*    background: rgba(255, 255, 255, 0.2);*/
/*    padding: 10px;*/
/*    margin: auto;*/

/*    font-weight: 400;*/
/*    border-radius: 37px;*/
/*}*/

/*.projects-row {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    align-items: center;*/
/*    justify-content: start;*/
/*    margin: auto 20px;*/
/*    gap: 50px;*/
/*    height: auto;*/
/*}*/

/*.project-container {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: start;*/
/*    padding: 0;*/

/*    min-height: 500px;*/
/*    max-height: 80vh;*/

/*    max-width: 450px;*/
/*    height: auto;*/
/*    z-index: 1;*/

/*    border-radius: 30px;*/

/*    background: linear-gradient(to bottom, rgba(var(--color-blue), 0.9), rgba(var(--color-indigo), 0.9));*/
/*    background-blend-mode: luminosity;*/


/*}*/

/*.text-info {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    flex: 1;*/
/*    width: calc(100% - 40px);*/
/*    margin: 5px 20px 20px 20px;*/
/*}*/

/*.upper-info {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: start;*/
/*    flex: 1;*/
/*    width: 100%;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*.thumbnail {*/
/*    width: 100%;*/
/*    height: 20%;*/
/*    object-fit: fill;*/
/*    border-radius: 30px 30px 0 0;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*.title-row {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    justify-content: space-between;*/
/*    width: 100%;*/
/*}*/

/*.upper-info .subLabel, .project-container .description {*/
/*    color: rgba(var(--color-light), 1);*/
/*    text-align: start;*/
/*    width: calc(100%);*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*.upper-info .subLabel {*/
/*    font-weight: 600;*/
/*    align-self: center;*/
/*}*/

/*.upper-info .description {*/
/*    font-weight: 400;*/
/*    padding: 5px 0;*/
/*}*/

/*.title-row .icons-container {*/
/*    display: flex;*/
/*    flex-direction: row;*/

/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    gap: 5px;*/
/*}*/

/*.title-row .icons-container img {*/
/*    width: 40px;*/
/*    height: auto;*/
/*    aspect-ratio: initial;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*.button-container {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    column-gap: 10px;*/
/*    row-gap: 0;*/
/*    width: calc(100%);*/
/*    margin-top: 20px;*/
/*    padding: 0;*/
/*    height: 50px;*/
/*}*/

/*.button-container .see-more-button {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    flex: 1;*/
/*    width: auto;*/
/*    height: 100%;*/
/*    background: rgba(var(--color-light), 1);*/
/*    border-radius: 10px;*/
/*    transition: background 0.3s ease-out;*/
/*}*/

/*.button-container .see-more-button:hover {*/
/*    background: rgba(var(--color-light), 0.3);*/
/*}*/

/*.button-container .see-more-button:hover a {*/
/*    transform: scale(1.05);*/
/*    color: rgba(var(--color-light), 1);*/
/*}*/

/*.button-container .see-more-button a {*/
/*    text-decoration: none;*/
/*    !*font-size: 30px;*!*/
/*    !*font-weight: 600;*!*/
/*    color: rgb(var(--color-indigo), 1);*/
/*    transition: all 0.3s ease-out;*/

/*}*/

/*.button-container .github-button {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    height: 50px;*/
/*    width: 50px;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    border-radius: 10px;*/
/*    transition: all 0.3s ease-out;*/
/*    border: 1px solid transparent;*/
/*}*/

/*.button-container .github-button path {*/
/*    transition: all 0.3s ease-out;*/
/*}*/

/*.github-button:hover path {*/
/*    fill: rgba(var(--color-indigo), 0.6) !important;*/
/*}*/

/*.github-button:hover {*/
/*    background: rgba(var(--color-light), 0.8);*/
/*    backdrop-filter: blur(15px) saturate(180%);*/
/*    -webkit-backdrop-filter: blur(20px) saturate(180%);*/
/*    border-radius: 10px;*/
/*    border: 1px solid rgba(255, 255, 255, 0.3);*/
/*}*/


/*@media (max-width: 750px) {*/
/*    .projects-row {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*        justify-content: center;*/
/*        gap: 40px;*/
/*    }*/

/*    .project-container {*/
/*        max-height: 40vh;*/
/*    }*/
/*}*/

/*@media (max-width: 500px) {*/
/*    .projects-container .label {*/
/*        font-size: 30px;*/
/*    }*/

/*    .sticky-block {*/
/*        top: 60px;*/
/*    }*/
/*}*/

/* Block 8 with projects V2*/

:root {
    --card-border-radius: 50px;
    --card-padding: 10px;
    --content-border-radius: 40px;
    --frosted-glass-bg: 217, 217, 217;
    --text-color: #333;
}


/* Container for all project cards */
.projects-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: 50px auto;
    min-height: 100vh;
    height: auto;
    gap: 20px;
    width: 90%;
}

.projects-block .label{
    text-align: center;
}


.projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Individual project card with frosted glass effect */
.project-card {
    border-radius: var(--card-border-radius);
    background-color: rgba(var(--frosted-glass-bg), 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    min-height: 400px;
    min-width: 300px;
    max-width: 400px;
    aspect-ratio: 300/350;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: var(--card-padding);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}



.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background-color: rgba(var(--frosted-glass-bg), 0.7);
}

/* Inner content container */
.project-card-content {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: var(--content-border-radius);
    overflow: hidden;
}

/* Container for the main image */
.image-container {
    width: 100%;
    height: 100%;
    position: relative;
    aspect-ratio: 300/350;

}

/* Main project image */
.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--content-border-radius);
}

/* Blur overlay for the bottom half */

/* Gradient blur effect */
.blur-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.65) 50%,
            rgba(255, 255, 255, 0.85) 80%,
            rgba(255, 255, 255, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Bottom content container */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    width: calc(100% - 40px);

    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 0;

}

.progressive-blur-container {
    top: 40%;
    height: 80%;
}

/* Technology tags container */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

/* Individual technology tag */
.tech-tag {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 500;
    margin: 0;
    font-size: 15px;
    transition: background-color 0.2s ease;
}

.tech-tag:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.text-white {
    color: #FFFFFF;
}

/* Project title styling */
.card-title {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

/* Project description styling */
.card-description {
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}

/* Action buttons container */
.card-actions {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin-top: 10px;
    height: 50px;
}

/* Individual action button */
.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: rgba(241, 241, 241, 0.7);
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.action-button:hover,
.card-outside-link-button:hover{
    background-color: rgba(241, 241, 241, 0.5);
    transform: translateY(-2px);
}

.card-outside-link-button {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 0;
    aspect-ratio: 1/1;
    height: 100%;
    margin-left: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.card-outside-link-button .link-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: fill;
    margin: auto;
}

.link-icon.big-icon {
    width: 60%;
    height: 60%;
}

.color-pallete-purple {
    color: #2A025F;
}
.color-pallete-purple path {
    fill: rgba(42, 2, 95, 0.7);
}

/* Media queries */
@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .project-card {
        min-height: 300px;
        max-height: 450px;
        height: calc(100% - 20px);
        width: auto;
    }

    .progressive-blur-container {
        top: 0;
        width: 100%;
        height: 100%;
    }

}

@media (max-width: 380px) {
    .project-card {
        min-height: 250px;
    }

    .tech-tag {
        font-size: 10px;
    }

    .project-link {
        padding: 4px 8px;
        font-size: 12px;
    }
}


/* Block 9 with links */
.links-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    margin: auto 20px;
    height: 100vh;
}

.links-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: auto;
    width: 100%;
}

.links-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    width: 25%;
}

.navigation-link-button-bg {
    width: 100%;
}

.links-block .label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 2;
    background: rgba(var(--color-light), 0.2);
}

@media (max-width: 750px) {
    .links-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        gap: 20px;
        margin: 20px auto;
    }

    .links-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;


    }

    .navigation-link-button-bg {
        width: 90%;
    }
}