/* Import Font Audiowide Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
/* Style Container */
.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 20px;
    width: max-content;
}
/* Style Span */
.container span{
    opacity: 0;
    animation: show_span 2s ease-in-out 1 forwards;
}
/* Style Animation Show Span */
@keyframes show_span{
    0%{
        opacity: 0;
        filter: blur(33px);
    }
    100%{
        opacity: 1;
        filter: blur(0);
    }
}
/* Style Span nth-child */
.container span:nth-child(2){
    animation-delay: 1s
}
.container span:nth-child(3){
    animation-delay: 2s;
}
.container span:nth-child(4){
    animation-delay: 3s;
}
/* Stylle id svg */
#svg{
    position: relative;
    z-index: -1;
}
/* Style Ellipse nth-child */
.ellipse:nth-child(2n){
    filter: blur(5px);
}
/* Style Line */
.line{
    opacity: .5;
}