body {
    background-image: url(images/fond.png);
    
    
}

section  {
    background: linear-gradient(45deg, purple, red, #008B8B, #00CCC9, rgb(255, 166, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5em;
}

h1 {
    justify-content: center;
    display: flex;
    color: #da1818;
    font-size: 2.5em;
    font-family: "Revalia", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 10px;
}


.progress {
        appearance: none;
        width: 250px;
        height: 20px;
        border: 2px solid rgb(255, 0, 0);
        border-radius: 10px;
        background-color: #ff0000;
        box-shadow: 0 0 10px rgb(122, 2, 138), 0 0 20px rgb(255, 0, 0) inset;
        display: block;
        margin: 0 auto;
        margin-top: 200px;
    }


    .progress::-webkit-progress-value {
        background: linear-gradient(90deg, rgb(0, 0, 0), rgb(255, 0, 0));
        border-radius: 10px;
        box-shadow: 0 0 10px rgb(255, 0, 0), 0 0 20px rgb(0, 0, 0);
    }

.loading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.loading-text {
    font-family: 'Syne Mono', monospace;
    color: #0ff;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #0ff;
    width: 0;
    animation: fullCycle 10s steps(33) infinite,
    blink-cursor 7s step-end 3s 6;
    animation-delay: 0s, 4s;
}


@keyframes fullCycle {
    0% {
        width: 0;
        border-color: transparent;
    }

    25% {
        width: 33ch;
        border-color: #0ff;
    }

    60% {
        width: 33ch;
        border-color: transparent;
    }

    65% {
        width: 0;
        border-color: transparent;
    }

    100% {
        width: 0;
        border-color: transparent;
    }
}

    




.k2000-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: fit-content;
}

.scanner-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(to right, transparent 0%, red 50%, transparent 100%);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    opacity: 0.8;
    animation: k2000-scan 1s infinite linear alternate;
}

@keyframes k2000-scan {
    0% {
        background-position: -100% 0;
    }
    100% {
       background-position: 100% 0;
    }
}

