html {}

body {
    background-color: #110F23;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #110F23;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #110F23;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #2A2257;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #EB055A;
}


header .container-lg .pt-text {
    animation: pt-glitch .65s cubic-bezier(.25, .46, .45, .9399999999999999) infinite both;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
    color: #f5f5f5;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

header .container-lg {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 97vh;
    /* Ustawia wysokość kontenera na całą wysokość ekranu */
}


#texts {}

@keyframes pt-glitch {
    0% {
        text-shadow: 2px 2px 12px #eb055a, -2px -2px 12px #4632f0;
    }

    25% {
        text-shadow: -2px -2px 12px #eb055a, 2px 2px 12px #4632f0;
    }

    50% {
        text-shadow: 2px -2px 12px #eb055a, -2px 2px 12px #4632f0;
    }

    75% {
        text-shadow: -2px 2px 12px #eb055a, 2px -2px 12px #4632f0;
    }

    100% {
        text-shadow: 2px 2px 12px #eb055a, -2px -2px 12px #4632f0;
    }
}


/* Dodaj klasę 'scrolled', aby ukryć linki do sekcji */
.scrolled .navbar-nav {
    visibility: hidden;
}

/* Na większych ekranach ukryj linki do sekcji */
@media (min-width: 992px) {
    .navbar-nav.scrolled {
        visibility: visible;
    }
}

#watermark {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 300px;
    text-shadow: 2px 2px 12px #f5f5f5;
    color: #f5f5f5;
    border-radius: 1px 0px 0px 140px;
    box-shadow: -5px -1px 20px #eb055a;
    height: 30px
}


#max {
    height: 3vh;
}