* {
    font-family: "Urbanist", serif;
}

body,
html {
    background-color: #080817;
    color: white;
}

img.img-fluid.dex {
    height: 40px;
}

.top-shape {
    top: 0;
    left: 0;
    width: 500px;
    max-width: 60%;
}

.middle-shape {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 700px;
    max-width: 60%;
}

.topbar {
    z-index: 200;
}

.title {
    font-size: 60px;
}

section {
    position: relative;
    z-index: 1000;
}

.title-2 {
    font-size: 40px;
}

.mobile {
    display: none;
}


.animated-circles {
    position: absolute;
    bottom: auto;
    left: auto;
    right: 0;
    transform: translate3d(65%, -50%, 0);
    top: 0;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    border-radius: 100%;
    border: 3px solid #FFF;
    transform: translate3d(-50%, -50%, 0);
}

.circle-1 {
    animation: growCircle 2s linear infinite;
}

.circle-2 {
    animation: growCircle 2s infinite;
    animation-delay: .5s;
}

.circle-3 {
    animation: growCircle 2s infinite;
    animation-delay: 1s;
}

.circle-4 {
    animation: growCircle 2s infinite;
    animation-delay: 1.5s;
}


#dexscreener-embed{
    position:relative;
    width:100%;
    padding-bottom:125%;
}

@media(min-width:1400px)
{
    #dexscreener-embed{
        padding-bottom:65%;
    }
}
#dexscreener-embed iframe{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    border:0;
}

@keyframes growCircle {
    0% {
        width: 0px;
        height: 0px;
        opacity: 1;
    }

    /* 50% {
        width: 100px;
        height: 100px;
        opacity: 0.5;
    } */

    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

@media screen and (max-width: 767px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .title {
        font-size: 45px;
    }

    .socials .d-flex {
        flex-wrap: wrap;
    }
    .topbar .d-flex.mob-flex.justify-content-between.align-items-center.gap-3 {
    flex-direction: column;
    padding: 0 15px;
}
}