body {
    margin: 0;
    overflow: hidden;
    background: black;
}

.fringe-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.fringe {
    position: absolute;
    width: 4px; /* Zwiększona szerokość */
    height: 50px; /* Frędzle będą dłuższe */
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9); /* Efekt neonowego światła */
    opacity: 0.9;
    border-radius: 2px; /* Zaokrąglenie krawędzi */
    animation: fall linear infinite;
}

@keyframes fall {
    from {
        transform: translateY(-50px);
        opacity: 1;
    }
    to {
        transform: translateY(100vh);
        opacity: 0;
    }
    
}
.admin {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1.2rem;
    border: 1px solid white;
    font-family: 'Bebas Neue', sans-serif;
}
#button-container{
 position:absolute;
 top: 10px;
 left: 10px;
}
#admin-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1.2rem;
    border: 1px solid white;
    font-family: 'Bebas Neue', sans-serif;
}
.niger{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}