*{
    font-family: 'Rajdhani', sans-serif;
    text-decoration: none;
    list-style: none;
    
}
.title{
    color: orangered;
    font-size: 30px;
    text-align: center;
}
.slogan{
    margin-top: 10px;
    text-align:center;
    color: green;
    font-size: 10px;
    font-family:'Rajdhani', sans-serif;
}

.scan {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.scan .huella {
    position: relative;
    width: 200px;
    height: 270px;
    background: url('../img/assistance/fingerPrint_01.png');
    background-size: 200px;
}

.scan .huella::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url('../img/assistance/fingerPrint_02.png');
    background-size: 200px;
    animation: huellas 5s ease-in-out infinite;
}

@keyframes huellas {
    0%, 100% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
}

.scan .huella::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 5px;
    background-color: white;
    border-radius: 10px;
    filter: drop-shadow(0px 0px 20px #2da6e2 )  drop-shadow(0px 0px 60px rgb(0, 51, 255) );
    animation: barra 5s ease-in-out infinite;
}

@keyframes barra {
    0%, 100% {
        top: 0%;
    }
    50% {
        top: 100%;
    }
}

.status {
    color:orangered;
    text-align: center;
    font-size: 1.8em;
    margin-top: 10px;
    animation: text 2s steps(1) infinite;

}

@keyframes text {
    0%, 100% {
        opacity: 0%;
    }
    50% {
        opacity: 100%;
    }
}

.redirect{
    text-decoration: none;
    margin-top: 20PX;
    color: rgb(6, 196, 230);
    font-size: 18px;
}