body {
    display: flex;
    flex-direction: column;
    background-color: #0d1117;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

img {
    max-width: 100%;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 1rem;
}

.coming-soon__inner {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
}

/* From Uiverse.io by satyamchaudharydev */
.loader {
    display: block;
    --height-of-loader: 1rem;
    --loader-color: #dedcdc;
    width: 250px;
    height: var(--height-of-loader);
    border-radius: 30px;
    background-color: #dedcdc0a;
    position: relative;
}

.loader::before {
    content: "";
    position: absolute;
    background: var(--loader-color);
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    animation: moving 10s ease-in-out infinite;
}

@keyframes moving {
    50% {
        width: 100%;
    }

    100% {
        width: 0;
        right: 0;
        left: unset;
    }
}