@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');


@keyframes bounce {
      0%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-7px); }
    }

    .dots span {
      display: inline-block;
      font-size:1em;
      animation: bounce 1.4s infinite;
    }

    .dots span:nth-child(2) {
      animation-delay: 0.2s;
    }

    .dots span:nth-child(3) {
      animation-delay: 0.4s;
    }


body {
    overflow: visible;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: #000000;*/
    background-image: url("/car.gif");
    font-family: 'reetro','Press Start 2P', cursive;
}

.container {
    text-align: center;
}

.retrowave-text {
    transform: skewX(-30deg);
    font-size: 9vw;
    color: #3f4ef8;
    position: relative;
    /* text-transform: uppercase; */
    /* animation: glare 3s infinite; */
    border-image: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%) 1;
    border-radius: 5px;
    border-width: 4px;
    border-style: solid;
padding: 10px 0px 1px 12px;
}
.retrowave-text::before {


    
    content: 'DRAG FORGE';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgb(255, 255, 255);
    border: gra;
    background: transparent;
    overflow: hidden;
    animation: glare 5s infinite;
    /* background: linear-gradient(90deg, blue, white, black); */

}

@keyframes glare {
    0% {
        clip-path: polygon(-40% 5%, -25% 0%, -35% 95%, -45% 100%);
    }
    25% {
        clip-path: polygon(-60% 5%, -40% 0%, -45% 95%, -65% 100%);
    }
    65% {
        clip-path: polygon(125% 5%, 140% 0%, 135% 95%, 120% 100%);
    }
    100% {
        clip-path: polygon(125% 5%, 140% 0%, 135% 95%, 120% 100%);
    }
}

.coming-soon {
    font-size: 2vw;
color: #d4c0c0;
    margin-top: 20px;
}
