body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.bg-img {
    width: 100dvw;
    height: 100dvh;
    object-fit: cover;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    /* filter: brightness(.2); */
    background-image: linear-gradient(#709fdde3, #216bcbcc), url(adeo-wallpaper.webp);
}

.info {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 10 !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    margin: auto;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;

    img {
        object-fit: contain;
        max-width: 512px;
        padding: 2rem;
        margin-bottom: 1rem;
        -moz-window-dragging: no-drag;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -o-user-select: none;
        user-select: none;

    }

    .social {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;

        @media (max-width: 768px) {
            flex-direction: column;
        }

        a {
            display: flex;
            align-items: center;
            color: #fff;
            text-decoration: none;
            padding: 8px 12px;
            border: 1px solid #fff;
            border-radius: 5px;
            transition: all ease-in .1s;

            &:hover {
                border-color: #004AAD;
                color: #004AAD;
                background-color: #fff;
                /* transition: ease-out .1s; */
                transition: all ease-in .1s;

                /* padding: 8px 18px; */
            }

            i {
                margin-right: .75rem;
            }
        }

    }

    .b2b {
        text-decoration: none;
        color: #101010;
        position: relative;
        width: 440px;
        padding: 2rem 2.8rem;
        background-color: #ffffff8c;
        backdrop-filter: saturate(1.5) blur(4px);
        border: 3px solid #0000;
        border-radius: 12px;
        background: linear-gradient(#ffffff8c, #ffffff8c) padding-box, linear-gradient(var(--angle), #004aad9c, #687aff3d) border-box;

        @media (max-width:768px) {
            width: 70vw;
            text-align: center;

            .watch {
                display: none;
            }

        }

        h2 {
            margin: 0;
            margin-bottom: 1rem;

            span {
                font-size: 2rem;
            }
        }

        p {
            margin: 0;
        }

        span.top-title {
            position: absolute;
            top: -1rem;
            left: -1rem;
            font-size: 2.4rem;
            color: white;
            opacity: 1;
            font-weight: 900;
        }

        .watch {
            width: 210px;
            position: absolute;
            bottom: -68px;
            right: -30px;
        }

    }
}

.description {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 0 18px;
    h3 {
        line-height: 1.5;
        font-size: 1.2rem;
        font-weight: 500;
        color: #fff;
        margin: 0 0 2rem 0;
        text-align: balance;
    }

}


p.copy {
    position: absolute;
    margin: auto;
    color: #fff;
    bottom: 1rem;
    text-align: center;
    width: 100%;
    -moz-window-dragging: no-drag;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

@keyframes rotate {
    to {
        --angle: 360deg;
    }
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}