@font-face {
    font-family: "DM Sans";
    src: url("./assets/DMSans.ttf") format("truetype");
}

html, body {
    font-family: "DM Sans", sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

* {
    box-sizing: border-box;
}

p, h1 {
    margin-block-start: 0;
    margin-block-end: 0;
}

a {
    text-decoration: none;
}

:root {
    --fibers-colors-surface-background-lvl2: #F7F7FA;
    --fiber-colors-surface-foreground-static-neutral-lvl1: #13131A;
    --fiber-colors-surface-foreground-static-neutral-lvl2: #282833;
    --fiber-colors-surface-foreground-static-neutral-lvl3: #717180;
    --fiber-colors-container-dynamic-brand-bold-foreground-default: #FFFFFF;
    --fiber-colors-container-dynamic-brand-bold-background-default: #7C33B5;
    --fiber-colors-surface-foreground-dynamic-brand-default: #7C33B5;
}

body {
    color: var(--fiber-colors-surface-foreground-static-neutral-lvl2);
    background: var(--fibers-colors-surface-background-lvl2);
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    font-weight: 300;
    min-height: 100dvh;
    padding-top: 60px;
    padding-inline: 16px;
    margin-top: -60px;
}

.sigma-logo {
    display: flex;
    width: 223px;
    height: 28px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 20px;
}


.main {
    display: inline-flex;
    height: 384px;
    align-items: flex-start;
    gap: 34px;
    flex-shrink: 0;

    .moved-image {
        min-width: 200px;
        max-width: 384px;
        width: 100%;
        object-fit: contain;
    }

    .content {
        display: flex;
        min-width: 200px;
        max-width: 384px;
        width: 100%;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        color: var(--fiber-colors-surface-foreground-static-neutral-lvl3);

        .title {
            color: var(--fiber-colors-surface-foreground-static-neutral-lvl1);
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 48px;
            letter-spacing: 1px;
            margin-bottom: 32px;
        }

        .visit {
            margin-bottom: 24px;

            .link {
                color: var(--fiber-colors-surface-foreground-dynamic-brand-default);
            }
        }

        .list-title {
            font-size: 14px;
        }

        .list {
            font-size: 14px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 8px;
            align-self: stretch;
            margin-block: 12px;
            list-style: none;
            padding-inline-start: 0;

            .list-item {
                display: flex;
                height: 24px;
                align-items: center;
                gap: 8px;
                font-weight: 400;
                color: var(--fiber-colors-surface-foreground-static-neutral-lvl2);
            }
        }

        .button {
            display: flex;
            height: 34px;
            padding: 7px 12px;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px;
            margin-bottom: 16px;

            border-radius: 2px;
            background: var(--fiber-colors-container-dynamic-brand-bold-background-default);
            color: var(--fiber-colors-container-dynamic-brand-bold-foreground-default);
        }
    }
}

.bg-wrapper {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    pointer-events: none;

    .bg-vector {
        position: absolute;
        background: rgba(242, 12, 106, 0.04);
        filter: blur(150px);
    }

    .bg-vector-1 {
        width: 689.349px;
        height: 641.503px;
        flex-shrink: 0;

        top: -133px;
        left: -313px;
    }

    .bg-vector-2 {
        width: 780px;
        height: 761px;
        transform: rotate(104.5deg);
        flex-shrink: 0;

        bottom: -364px;
        right: -196px;
    }
}