html,
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    z-index: 100;
    width: 100%;
    min-height: 100vh;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    color: white;
    flex-direction: column;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
}

.title {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 1.5em;
}

.container h1 {
    font-size: 5rem;
    user-select: none;
    margin: 0rem;
}

.container h2 {
    margin: 0rem;
}

.cover-video {
    position: relative;
}

.cover-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.cover-video video {
    border-radius: 5px;
    width: 30rem;
}

.box {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 20px;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h2,
h1,
p,
span,
li {
    opacity: 0.8;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
    list-style-type: "- ";
    font-size: 1.4rem;
}

a:link {
    color: white;
}

a:visited {
    color: lightgrey;
}

.svg-logo {
    opacity: 0.8;
    height: 2.5rem;
}

a {
    transition: filter 0.15s ease;
}

a:hover {
    filter: drop-shadow(0.2em 0.2em 0.1em rgba(0, 0, 0, 0.4));
}

.disabled-link {
    cursor: not-allowed;
    filter: brightness(75%) blur(1px);
}

.disabled-link:hover {
    filter: brightness(50%) blur(5px);
}

.svg-logos {
    margin: 0.5rem;
    margin-top: 2rem;
    margin-left: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.svg-logos .cols {
    gap: 2rem;
}

.cols {
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    align-items: center;
    gap: 1rem;
}

.hero-img {
    width: 37.5vw;
    max-width: 50rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.hero-price {
    font-size: 3rem;
}

li {
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.5rem;
}

.feature-showcase li {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.padded {
    max-width: 70vh;
}

/* For mobile devices */
@media screen and (max-width: 1500px) {
    .cols {
        flex-direction: column;
    }

    .svg-logos .cols {
        flex-direction: row;
    }

    .hero-img {
        width: 50rem;
        max-width: 80vw;
    }

    .padded {
        margin-left: 1em;
        margin-right: 1em;
    }
}

:root {
    --color-bg1: rgb(0, 0, 0);
    --color-bg2: rgb(27, 0, 136);
    --color1: 255, 0, 0;
    --color2: 71, 0, 165;
    --color3: 85, 0, 141;
    --color4: 189, 0, 142;
    --color5: 0, 38, 255;
    --circle-size: 80%;
    --blending: hard-light;
}

@keyframes moveInCircle {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes moveHorizontal {
    0% {
        transform: translateX(-50%) translateY(-10%);
    }

    50% {
        transform: translateX(50%) translateY(10%);
    }

    100% {
        transform: translateX(-50%) translateY(-10%);
    }
}


.gradient-bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    overflow: hidden;
    background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
    top: 0;
    left: 0;

    svg {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
    }


    .gradients-container {
        filter: url(#goo) blur(40px);
        width: 100%;
        height: 100%;
    }

    .g1 {
        position: absolute;
        background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
        mix-blend-mode: var(--blending);

        width: var(--circle-size);
        height: var(--circle-size);
        top: calc(50% - var(--circle-size) / 2);
        left: calc(50% - var(--circle-size) / 2);

        transform-origin: center center;
        animation: moveVertical 60s ease infinite;

        opacity: 1;
    }

    .g2 {
        position: absolute;
        background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
        mix-blend-mode: var(--blending);

        width: var(--circle-size);
        height: var(--circle-size);
        top: calc(50% - var(--circle-size) / 2);
        left: calc(50% - var(--circle-size) / 2);

        transform-origin: calc(50% - 400px);
        animation: moveInCircle 40s reverse infinite;

        opacity: 1;
    }

    .g3 {
        position: absolute;
        background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
        mix-blend-mode: var(--blending);

        width: var(--circle-size);
        height: var(--circle-size);
        top: calc(50% - var(--circle-size) / 2 + 200px);
        left: calc(50% - var(--circle-size) / 2 - 500px);

        transform-origin: calc(50% + 400px);
        animation: moveInCircle 80s linear infinite;

        opacity: 1;
    }

    .g4 {
        position: absolute;
        background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
        mix-blend-mode: var(--blending);

        width: var(--circle-size);
        height: var(--circle-size);
        top: calc(50% - var(--circle-size) / 2);
        left: calc(50% - var(--circle-size) / 2);

        transform-origin: calc(50% - 200px);
        animation: moveHorizontal 80s ease infinite;

        opacity: 0.7;
    }

    .g5 {
        position: absolute;
        background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
        mix-blend-mode: var(--blending);

        width: calc(var(--circle-size) * 2);
        height: calc(var(--circle-size) * 2);
        top: calc(50% - var(--circle-size));
        left: calc(50% - var(--circle-size));

        transform-origin: calc(50% - 800px) calc(50% + 200px);
        animation: moveInCircle 40s ease infinite;

        opacity: 1;
    }
}