@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap)');

.bg {
    overflow: hidden;
    background-color: #111111;
}

.bg-image {
    opacity: 0.5;
    filter: blur(10px);

    position: absolute;
    top: 38%;
    left: 50%;
    max-width: 150%;
    min-height: auto;
    transform: translate(-50%, -45%);
}

.main-txt {
    font-family: Oswald;
    color: white;
    line-height: .01;
    position: absolute;
    top: 38%;
    left: 50%;
    max-width: 100%;
    min-height: auto;
    padding: 20px;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    box-sizing: border-box;
}

.txt-bg {
    color: black;
    z-index: 1;
    filter:blur(8px);
    transform: translate(-48%, -47%);
}

.shape-container {
    box-sizing: border-box;
    background-color: rgba(255, 255, 0, 0.24);
    position: absolute;
    top: auto;
    left: 50%;
    max-width: 100%;
    min-height: auto;
    transform: translateX(-178px) translateY(30px);

}

.shape {
    background-color: rgb(255, 255, 255);
    width: 15px;
    height: 15px;
    border-radius: 50%;

    position: absolute;

    animation-name: ani;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(1.1, 0.75, 0.25, 0.1);
    animation-iteration-count: infinite;
}
.shape-trail {
    background-color: rgb(255, 255, 255);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    filter:blur(1px);
    opacity: 0.66;

    position: absolute;

    animation-name: ani;
    animation-delay: 50ms;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(1.1, 0.75, 0.25, 0.1);
    animation-iteration-count: infinite;
}
.shape-trail-blur {
    background-color: rgb(255, 255, 255);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    filter:blur(2px);
    opacity: 0.33;

    position: absolute;

    animation-name: ani;
    animation-delay: 100ms;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(1.1, 0.75, 0.25, 0.1);
    animation-iteration-count: infinite;
}
  
@keyframes ani {
    0% {
      transform: translateX(0px);
    }
    50% {
      transform: translateX(325px);
    }
    100% {
      transform: translateX(0px);
    }
}
