* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #711233; /* Color Granate */
    font-family: Arial, sans-serif;
}

.handle-preloader {
    text-align: center;
}

.logo-container img {
    width: 400px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.txt-loading {
    display: flex;
    justify-content: center;
}

.letters-loading {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 70px;
    line-height: 70px;
    font-weight: 600;
    letter-spacing: 15px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.3); /* Color blanco con opacidad */
    font-family: Arial, sans-serif;
}

.letters-loading:before {
    position: absolute;
    top: 0;
    left: 0;
    content: attr(data-text-preloader);
    color: white;
    animation: letters-loading 4s infinite;
    opacity: 0;
}


.letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}
.letters-loading:nth-child(6):before {
 animation-delay: 1s;
}
.letters-loading:nth-child(7):before {
      animation-delay: 1.3s;
}
.letters-loading:nth-child(8):before {
    animation-delay: 1.5s;
}
/* Animación de las letras */
@keyframes letters-loading {
   0%,
        75%,
        100% {
            opacity: 0;
            transform: rotateY(-90deg);
        }
        25%,
        50% {
            opacity: 1;
            transform: rotateY(0deg);
        }
}

