@font-face {
    font-display: swap;
    font-family: 'Noto Serif';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-serif-v23-latin_latin-ext-regular.woff2') format('woff2'),
        url('../fonts/noto-serif-v23-latin_latin-ext-regular.ttf') format('truetype');
}

:root {
    --color-link: hsl(240, 100%, 50%);
    --color-high: #FFFFA3;
    --color-soft: #CCCCCC;
    --color-white: whitesmoke;
    --color-black: black;

    --color-project: blue;

    --space: 10px;

    interpolate-size: allow-keywords;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: white;
    line-height: 1.1;
    font-size: 1rem;
    min-height: calc(var(--vh, 1vh) * 100);

    font-family: "Noto Serif", serif;

    /* background-image: url('/v4/assets/bg.png'); */
    background-position: center;
    background-size: cover;

    overflow-x: hidden;
}



/************* HEADER *************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);

    background-color: white;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.loader svg {
    width: 80%;
}

.blue {
    color: var(--color-link);
}


.cool {
    cursor: url('../cursors/two-fingers.svg'), pointer !important;
}

nav {
    position: -webkit-fixed;
    position: fixed;
    z-index: 3;
    padding: 5px;
    font-size: 1rem;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    width: 100vw;
    flex-wrap: wrap;
    /* background-color: white; */
}

.selected {
    color: var(--color-white);
    background:
        linear-gradient(90deg, white 50%, transparent 0) repeat-x,
        linear-gradient(90deg, white 50%, transparent 0) repeat-x,
        linear-gradient(0deg, white 50%, transparent 0) repeat-y,
        linear-gradient(0deg, white 50%, transparent 0) repeat-y;
    background-size: 4px 2px, 4px 2px, 2px 4px, 2px 4px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    background-color: blue;
    /* -webkit-animation: linearGradientMove .5s infinite linear; */
    /* animation: linearGradientMove .5s infinite linear; */
}


.navFixed {
    position: fixed;
    z-index: 2;
    display: none;
    left: 0;
    margin: 5px;
}

.navFixed a {
    line-height: 1;
    color: var(--color-project);
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: white;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 4px 15px;
    height: 45px;
    min-width: 45px;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(90deg, blue 50%, transparent 0) repeat-x,
        linear-gradient(90deg, blue 50%, transparent 0) repeat-x,
        linear-gradient(0deg, blue 50%, transparent 0) repeat-y,
        linear-gradient(0deg, blue 50%, transparent 0) repeat-y;
    background-size: 4px 2px, 4px 2px, 2px 4px, 2px 4px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    background-color: white;
}


nav div {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.navIndex .projectsLinks {
    display: none;
}

a {
    line-height: 1;
    color: var(--color-project);
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: white;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 4px 15px;
    height: 45px;
    min-width: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(90deg, blue 50%, transparent 0) repeat-x,
        linear-gradient(90deg, blue 50%, transparent 0) repeat-x,
        linear-gradient(0deg, blue 50%, transparent 0) repeat-y,
        linear-gradient(0deg, blue 50%, transparent 0) repeat-y;
    background-size: 4px 2px, 4px 2px, 2px 4px, 2px 4px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    background-color: white;
}

a svg,
#juliaTitle {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}


a:hover,
li:hover,
.nextPro:hover,
.hover,
h1:hover,
#change:hover,
#presentation:hover,
.twoFingers {
    cursor: url('../cursors/two-fingers.svg'), pointer !important;
}


.menuOn {
    background-color: var(--color-project);
    color: var(--color-white);
}

h1 {
    font-size: inherit;
    font-weight: 400;
}

/* 
#translate {
    position: fixed;
    right: 5px;
    top: 5px;
} */

#juliaTitle {
    height: 33px;
    width: auto;
}

#juliaTitle:hover {
    fill: white;
}

#juliaTitle:hover path {
    fill: white;
}

#juliaTitle:hover plygon {
    fill: white;
}

#juliaTitle:hover circle {
    fill: white;
}

ul {
    list-style-type: circle;
}

.highlight {
    list-style-type: disc;
    background-color: blue;
}

.highlight img {
    opacity: 0;
}

h3 {
    display: inherit;
}

button {
    white-space: nowrap;
}

#contact {
    display: flex;
}

#contact a {
    width: 100%;
    text-align: center;
    padding: 6px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

a:hover {
    color: var(--color-white);
    background:
        linear-gradient(90deg, white 50%, transparent 0) repeat-x,
        linear-gradient(90deg, white 50%, transparent 0) repeat-x,
        linear-gradient(0deg, white 50%, transparent 0) repeat-y,
        linear-gradient(0deg, white 50%, transparent 0) repeat-y;
    background-size: 4px 2px, 4px 2px, 2px 4px, 2px 4px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    background-color: blue;
    -webkit-animation: linearGradientMove .5s infinite linear;
    animation: linearGradientMove .5s infinite linear;
}


#titleLink:hover {
    background-color: red;
}

@-webkit-keyframes linearGradientMove {
    100% {
        background-position: 4px 0, -4px 100%, 0 -4px, 100% 4px;
    }
}

@keyframes linearGradientMove {
    100% {
        background-position: 4px 0, -4px 100%, 0 -4px, 100% 4px;
    }
}

.hastags,
.hastagsArchive,
.hastagsAbout {
    padding: 0 10px;
    height: 70px;
    width: 100%;
    color: white;
    background-color: blue;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 2.7rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    transition: height 500ms ease;
    z-index: 998;
}

.hastags span,
.hastagsArchive span,
.hastagsAbout span {
    /*! height: 70px !important; */
    display: inline-block !important;
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
}

.hastags::-webkit-scrollbar,
.hastagsArchive::-webkit-scrollbar,
.hastagsAbout::-webkit-scrollbar {
    display: none;
}

.hastagsArchive {
    background-color: yellow;
    color: black;
}

.hastagsAbout {
    background-color: red;
    color: white;
}

/* Hide divs initially */
.hidden {
    display: none !important;
}

.twosides {
    display: flex;
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    top: 55px;
    opacity: .3;
    transition: all .5s ease-in-out;
}

.twosidesNoblur {
    opacity: 1;
    transition: all .5s ease-in-out;

}

.twosides>div {
    width: 50vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left {
    position: -webkit-sticky;
    position: sticky;
    top: 55px;
    height: calc(calc(var(--vh, 1vh) * 100) - 55px - 70px);

}

.left img {
    width: 300px;
}

.right {
    padding: 5vh;
}

.right>div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.about>div a {
    border: none;
    background: none;
    display: inline;
    color: inherit;
    text-decoration: underline;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: inherit;
    min-width: auto;
}

#presentation {
    height: 100%;
    padding: 2px;
    z-index: 98;
    margin: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

#presentationBlock {
    position: relative;
    width: 410px;
    transition: all .5s ease-in-out;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
    margin-bottom: 30px;
}

.businessCards {
    position: relative;
    transition: all .5s ease-in-out;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-direction: column;
}

.businessCards img {
    width: 70%;
}


#presentationBlock iframe {
    width: 100%;
    height: 100%;
    z-index: 3;
    box-shadow: 0 0 40px -10px #0033ff56;
}

.contentAbout {
    max-width: 800px;
    width: 80%;
    padding-bottom: 140px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.main-carousel {
    height: 100%;
    width: 100%;
}

.flickity-page-dots {
    bottom: 15px !important;
}

.carousel-cell {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flickity-viewport {
    height: 100%;
}

.carousel-cell img {
    height: 180px;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.flickity-page-dots {
    bottom: 10px !important;
    left: 6px;
    width: fit-content !important;
}

.flickity-page-dots .dot {
    border-radius: 0 !important;
}

.flickity-button {
    display: none !important;
}

.flickity-page-dots .dot {
    width: 8px !important;
    height: 8px !important;
    margin: 0 4px !important;
    background: blue !important;
}



.credits {
    display: flex;
    justify-content: center;
    padding-bottom: calc(10vh + 70px);
    align-items: center;
    flex-direction: column;
    font-size: 2rem;
    height: calc(var(--vh, 1vh) * 100);
}


.credits div {
    font-family: 'Roanoke';
    width: 90%;
    text-align: center;
    display: block;
    /*! margin: auto; */

    line-height: 1;

    background: linear-gradient(90deg, blue 50%, transparent 0) repeat-x, linear-gradient(90deg, blue 50%, transparent 0) repeat-x, linear-gradient(0deg, blue 50%, transparent 0) repeat-y, linear-gradient(0deg, blue 50%, transparent 0) repeat-y;
    background-size: 4px 2px, 4px 2px, 2px 4px, 2px 4px;
    background-position:
        0 0, 0 100%, 0 0, 100% 0;
    background-color: white;
    max-width: 500px;
    padding: 20px;
    background-color: white;
    z-index: 99;
}

.credits span {
    transform: translateY(40%);
    z-index: 100;
}

.credits div a {
    background:
        linear-gradient(90deg, transparent 50%, transparent 0) repeat-x, linear-gradient(90deg, transparent 50%, transparent 0) repeat-x, linear-gradient(0deg, transparent 50%, transparent 0) repeat-y, linear-gradient(0deg, transparent 50%, transparent 0) repeat-y;
    background-position-x: 0%, 0%, 0%, 0%;
    background-position-y: 0%, 0%, 0%, 0%;
    background-size: auto, auto, auto, auto;
    background-size: 4px 2px, 4px 2px, 2px 4px, 2px 4px;
    background-position:
        0 0, 0 100%, 0 0, 100% 0;

    display: inline;
    padding: 0 5px;
}


.credits div a:hover {
    color: var(--color-white);
    background:
        linear-gradient(90deg, white 50%, transparent 0) repeat-x,
        linear-gradient(90deg, white 50%, transparent 0) repeat-x,
        linear-gradient(0deg, white 50%, transparent 0) repeat-y,
        linear-gradient(0deg, white 50%, transparent 0) repeat-y;
    background-size: 4px 2px, 4px 2px, 2px 4px, 2px 4px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    background-color: blue;
    -webkit-animation: linearGradientMove .5s infinite linear;
    animation: linearGradientMove .5s infinite linear;


}



/************* PROJECT *************/
.projectsContainer {}


.showing {
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
}


.imageBlock {}


.imageBlock img {
    width: auto;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.imageBlock img:hover {
    cursor: zoom-in;
}


.fullImage {
    height: calc(var(--vh, 1vh) * 100) !important;
    width: 100vw !important;
    -o-object-fit: contain !important;
    object-fit: contain !important;
    background-color: white;
    z-index: 999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    max-width: 100vw !important;
    max-height: calc(var(--vh, 1vh) * 100) !important;
    box-shadow: none !important;
    padding: 0;
}

.fullImage img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    z-index: 998;
    /* border: 2px dotted white; */

    box-shadow: none !important;
}


figcaption {
    /* font-size: 80%; */
    max-width: 80%;
    display: none;
}


.fullImage figcaption {
    position: fixed;
    bottom: 20px;
    left: 20px;
    color: blue;
    z-index: 999;
    display: block;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.fullImage p {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: blue;
    z-index: 999;
}

.fullImage img:hover {
    cursor: zoom-out !important;
}

.description {
    color: black;
    /* overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* Show only 3 lines */
}

.expanded {
    -webkit-line-clamp: unset;
    /* Remove line restriction */
    overflow: visible;
}


.projectsLinks {
    aspect-ratio: 1;
    padding: 2px !important;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;

}

.projectsLinks span {
    position: absolute;
    z-index: 2;
    color: white;
    /* transform: rotateY(180deg); */
}

.projectsLinks img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 3;
}

.fullBro {
    height: calc(var(--vh, 1vh) * 100) !important;
    width: 100vw !important;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1 !important;
    z-index: 2;
}


details[open] {
    height: auto;
    overflow: clip;

}


.infos {
    font-style: italic;
}

.projectSection {
    display: flex;
    position: relative;
    gap: 10vw;
    padding: 0 0 70px 0;

    opacity: 1;
    transition: all .5s ease-in-out;
}

.sectionEntered {
    opacity: 1;
    transition: all .5s ease-in-out;

}


.text {
    color: blue;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: -webkit-sticky;
    position: sticky;
    top: 55px;
    height: calc(calc(var(--vh, 1vh) * 100) - 55px - 70px);
    padding: 5px 0 5px 5px;
    width: 50vw;
    display: flex;
    justify-content: space-between;
}


.imagery {
    width: 50vw;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 5px 5px 5px 0;
    gap: 5px;
}

.imagery figure {
    padding: 2px;
    /* aspect-ratio: 16/9; */
    aspect-ratio: 4/3;
}

.imagery figure:hover {
    background:
        linear-gradient(90deg, blue 50%, transparent 0) repeat-x, linear-gradient(90deg, blue 50%, transparent 0) repeat-x, linear-gradient(0deg, blue 50%, transparent 0) repeat-y, linear-gradient(0deg, blue 50%, transparent 0) repeat-y;
    background-color: rgba(0, 0, 0, 0);
    background-position-x: 0%, 0%, 0%, 0%;
    background-position-y: 0%, 0%, 0%, 0%;
    background-size: auto, auto, auto, auto;
    background-size: 4px 2px, 4px 2px, 2px 4px, 2px 4px;
    background-position:
        0 0, 0 100%, 0 0, 100% 0;
    background-color: white;
    padding: 2px;
    -webkit-animation: linearGradientMove .5s infinite linear;
    animation: linearGradientMove .5s infinite linear;
}






.buttonPro {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.nextPro {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    color: blue;
    font-size: 3rem;
    transition: all ease-in-out .2s;

    position: fixed;
    top: 50vh;
    z-index: 997;

}

.proNext {
    right: 20px;
    padding: 10px 0 10px 0;
}

.proNext:hover {
    transform: translateX(5px);
    transition: all ease-in-out .2s;
}

.proPrevious {
    left: 20px;
    padding: 10px 10px 10px 0;
}

.proPrevious:hover {
    transform: translateX(-5px);
    transition: all ease-in-out .2s;
}

/************* ARCHIVE *************/
.archive {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-content: start;
    gap: 5px;
    background-color: white;
    padding: 5px;
    box-sizing: border-box;
    width: 100vw;
    z-index: 1;

    padding-bottom: 75px;
}



.frame {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    transition: all .5s ease-in-out;
}

.frameShow {
    opacity: 1;
}

.imagenes {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.imagenes iframe {
    width: 100%;
    height: 56.25%;
    /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100%;
    min-width: 177.77%;
    /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.archiveBlock {
    aspect-ratio: 1;
    width: 100%;
    font-size: 1rem;
    position: relative;
    max-height: calc(var(--vh, 1vh) * 100);

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

    /* background-image: url(../misc/juliamouse.svg);
    background-position: center;
    background-size: 100px;
    background-repeat: no-repeat; */


    -webkit-filter: none;


    filter: none;
    transition: all .5s ease-in-out;
    opacity: .3;
}

.blockEntered {
    opacity: 1 !important;
    transition: all .5s ease-in-out;

}


.show {
    opacity: 1 !important;
    transition: all ease-in-out .2s;
}

.hide {
    opacity: 0 !important;
    transition: all ease-in-out .2s;
}

video:hover {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🎶</text></svg>") 16 0, pointer;
}

/* Define the keyframes */
@-webkit-keyframes scaleHighlight {
    0% {
        transform: scale(1);
        /* Start at normal size */
    }

    50% {
        transform: scale(1.03);
        /* Slightly larger */
    }

    100% {
        transform: scale(1);
        /* Return to normal size */
    }
}

@keyframes scaleHighlight {
    0% {
        transform: scale(1);
        /* Start at normal size */
    }

    50% {
        transform: scale(1.03);
        /* Slightly larger */
    }

    100% {
        transform: scale(1);
        /* Return to normal size */
    }
}

.videoTouches {
    -webkit-animation: scaleHighlight 0.5s ease-in-out;
    animation: scaleHighlight 0.5s ease-in-out;
}


.archiveBlock h4 {
    position: absolute;
    font-weight: 400;
    max-width: 80%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    text-align: center;
    transition: all .5s ease-in-out;
    background-color: gainsboro;
    color: black;
    line-height: 1.3;
    opacity: 0;
    padding: 5px;
}

.archiveBlock img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.archiveBlock:hover {
    opacity: 1 !important;
    transition: all .5s ease-in-out;
}

.archiveBlock:hover h4 {
    opacity: 1 !important;
    transition: all .5s ease-in-out;
}


.others {
    -webkit-filter: blur(20px);
    filter: blur(20px);
    transition: all .5s ease-in-out;
}

video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.videoFrame {
    width: 270px;
    height: auto;
}

.videoFrame iframe {
    aspect-ratio: 16/9;
    height: auto;
    width: 100%;
}

.videoLoader {
    height: 40px;
    width: 40px;
    background-color: transparent;
    border: 3px dotted blue;
    border-radius: 99%;
    z-index: 1;
    position: absolute;
    -webkit-animation: loader 10s infinite linear;
    animation: loader 10s infinite linear;
}


@-webkit-keyframes loader {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes loader {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}


.videoFull {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/************* SELECTED *************/
.mobileFig {
    display: none;

}

.desktopFig {
    display: block;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 720px) {


    nav {
        position: relative;
    }


    .navFixed {
        display: inline-flex;
    }


    .businessCards {
        margin-bottom: 10px;
    }

    .businessCards img {
        width: 100%;
    }

    .navIndex .projectsLinks {
        display: inherit;
    }

    .projectsIndex {
        display: none;
    }

    .archive {
        grid-template-columns: repeat(1, 1fr);
    }



    .mobileFig {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        margin: auto;
    }

    .desktopFig {
        display: none;
    }


    .videoFull {
        -o-object-fit: contain;
        object-fit: contain;
    }


    .infos {
        display: none;
    }

    .twosides {
        flex-direction: column;
    }

    .twosides>div {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        position: relative;
        padding: 10px;
        box-sizing: border-box;
    }

    .left {
        top: inherit;
        margin: 0;
    }

    .main-carousel {
        padding: 5vh;
    }

    .flickity-page-dots {
        bottom: 0px !important;
        left: 0 !important;
    }


    .flickity-viewport {
        height: 180px !important;
    }

    .credits {
        padding-bottom: calc(5vh + 70px);
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;

    }

    .text {
        width: 100vw;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        position: initial;
        padding: 5px 5px 5px 5px;
    }

    .projectSection {
        flex-direction: column;
    }

    .imagery {
        width: 100vw;
        padding: 5px 5px 5px 5px;
    }

    .hastags,
    .hastagsArchive,
    .hastagsAbout {
        font-size: 2rem;
        height: 50px;

    }


    .fullImage figcaption {
        top: 10px;
    }

    .fullImage p {
        bottom: 10px;
    }

    .imagery figure {
        padding:
            0px;
        max-height: 70vh;
    }

    .videoFrame {
        width: 100%;
        height: auto;
    }

    iframe {
        width: 100%;
    }

    .twosides {
        position: relative;
        top: inherit;
    }

    .credits div {
        font-size: 1.7rem;
    }

    .wipDiv {
        flex-direction: column;
    }
}


.wipDiv {
    height: calc(var(--vh, 1vh) * 100);
    width: 100vw;

    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    background-color: white;

    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 5vh;
}