#logo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 99 !important;
}

#logo {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 30%;
    height: auto;
    animation: logo 4s ease-in-out infinite;
    z-index: 99 !important;
}

#progress-wrapper {
    width: 100%;
    height: auto;
    position: relative;
    top: 35%;
    left: 25%; /* #2207, old: 42% */
}

#letter-group {
    position: relative;
    display: flex;
    left: 13%;
    width: 25%;
    height: auto;
    transform: translateX(100%);
    opacity: 0;
    animation: letter-group 4s ease-in-out infinite;
}

.letter {
    width: 100%;
    /* animation-name: letter;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite; */
}

.letter:nth-child(1) {
    animation-delay: 1.5s
}

.letter:nth-child(2) {
    animation-delay: 1.6s
}

.letter:nth-child(3) {
    animation-delay: 1.7s
}

.letter:nth-child(4) {
    animation-delay: 1.8s
}

.letter:nth-child(5) {
    animation-delay: 1.9s
}

.letter:nth-child(6) {
    animation-delay: 2s
}

.letter:nth-child(7) {
    animation-delay: 2.1s
}

.letter:nth-child(8) {
    animation-delay: 2.2s
}

.letter:nth-child(9) {
    animation-delay: 2.3s
}

.letter:nth-child(10) {
    animation-delay: 2.4s
}

.letter:nth-child(11) {
    animation-delay: 2.5s
}

@media (min-aspect-ratio: 1/1) {
    #logo {
        top: 25%;
    }
}

.progress-bar {
    position: absolute;
    margin-top: 4%;
    height: 40%;
    padding: 2px;
    width: 50%;
    border-radius: 7px;
    background-color: gray;
    /* box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;            */
    animation: progress-bar-fadein 3s linear forwards;
}

.progress-bar span {
    display: block;
    height: 100%;
    border-radius: 3px;
    transition: width .4s ease-in-out;
    background-color: #509147;
    background-size: 30px 30px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                        transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                        transparent 75%, transparent);            
    
    animation: animate-stripes 1s linear infinite;             
}

/* .stripes span {
  background-size: 30px 30px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                      transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                      transparent 75%, transparent);            
  
  animation: animate-stripes 1s linear infinite;             
} */

@keyframes animate-stripes {
  0% {background-position: 0 0;} 100% {background-position: 60px 0;}
}

@keyframes logo {
    0% {
        transform: scale(10) rotateY(180deg);
        opacity: 0;
    }

    12% {
        transform: scale(1);
        opacity: 1;
    }

    25% {
        transform: translateX(-30%);
    }

    100% {
        transform: translateX(-30%);
    }
}

@keyframes letter-group {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    25% {
        transform: none;
        opacity: 1;
    }

    100% {
        transform: none;
        opacity: 1;
    }
}

@keyframes progress-bar-fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* @keyframes letter {
    0% {
        transform: none;
    }

    15% {
        transform: translateY(-200%);
    }

    30% {
        transform: none;
    }

    100% {
        transform: none;
    }
} */