html, body {
    height: 100%;
    overflow-x: hidden;
}
body{
    font-family: 'Inter', sans-serif !important;
    overflow-x: hidden;
}

.container2 {
    max-width: 1000px;
}

.blur-bg {
    background-color: #ffffffce;
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
}

.foreground{
    -moz-background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #000000, #000000);
    font-size: 10rem;
    font-weight: 900;
    letter-spacing: -10px;
    overflow-x: hidden;
    animation-name: mymove;
    animation-duration: 6s;
    animation-fill-mode:forwards;
    animation-iteration-count: infinite;
}

.foreground2{
    -moz-background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #000000, #000000);
    font-size: 10rem;
    font-weight: 900;
    letter-spacing: -10px;
    overflow-x: hidden;
    animation-name: mymove2;
    animation-delay: 2s;
    animation-duration: 6s;
    animation-fill-mode:forwards;
    animation-iteration-count: infinite;
}

.foreground3{
    -moz-background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #000000, #000000);
    font-size: 10rem;
    font-weight: 900;
    letter-spacing: -10px;
    overflow-x: hidden;
    animation-name: mymove3;
    animation-delay: 4s;
    animation-duration: 6s;
    animation-fill-mode:forwards;
    animation-iteration-count: infinite;
}

@keyframes mymove {
    0% {background-image: linear-gradient(90deg, #7928ca, #ff0080);}
    100% {background-image: linear-gradient(90deg, #000000, #000000);}
}
@keyframes mymove2 {
    0% {background-image: linear-gradient(90deg, #007CF0, #00DFD8);}
    100% {background-image: linear-gradient(90deg, #000000, #000000);}
}
@keyframes mymove3 {
    0% {background-image: linear-gradient(90deg, #ff4d4d, #f9cb28);}
    100% {background-image: linear-gradient(90deg, #000000, #000000);}
}

@media screen and (max-width:400px) {
    .foreground, .foreground2, .foreground3 {
        font-size: 5rem;
        letter-spacing: -6px;
        line-height: 4.8rem;
        overflow: hidden;
    }
}

/* colors */
.bg-black {
    background: #0e0e0e;
}

.btn-black {
    background-color: black;
    text-decoration: none;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 500;
}