.headerContainer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    color: #fff;
    padding: 20px;
    width: 100%;
    backdrop-filter: blur(10px) !important;
    background: #00000085 !important;
    box-shadow: 0 4px 30px #0000001a !important;
}

a {
    text-decoration: none;
}

.miniText {
    font-size: 12px;
    color: #9b9b9b;
    font-weight: 500;
}

.menuContainer {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    padding: 20px 20px;
    z-index: 100;
}

.menuContainer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: end;
    margin-top: 20px;
}

.menuContainer ul li {
    padding-top: 15px;
    /* font-weight: 600; */
    color: #adadad;
    font-size: 23px;
}

.scrollItem {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* LINEA BASE */
.lineScroll {
    width: 1px;
    height: 35px;
    background-color: #6d6d6d;
    overflow: hidden;
    position: relative;
}

/* LINEA LUMINOSA */
.lineLight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #fff;
    animation: lineFill 2.8s ease-in-out infinite;
}

/* TESTO */
.scrollText {
    font-size: 12px;
    color: #6d6d6d;
    animation: textGlow 2.8s ease-in-out infinite;
}

/* ===== ANIMAZIONI ===== */

/* Riempimento linea */
@keyframes lineFill {
    0% {
        height: 0;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    60% {
        height: 100%;
        opacity: 1;
    }

    80% {
        height: 100%;
        opacity: 0;
    }

    100% {
        height: 0;
        opacity: 0;
    }
}

/* Glow testo */
@keyframes textGlow {

    0%,
    50% {
        color: #6d6d6d;
    }

    65% {
        color: #ffffff;
    }

    80% {
        color: #ffffff;
    }

    100% {
        color: #6d6d6d;
    }
}