/* Home page styles */
body {
    padding: 0 0;
    margin: 0 0;
    height: 100dvh;
    width: 100dvw;
    background-image: url('../img/background/background.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-position-y: center;
    background-position-x: center;

    .container {
        position: relative;
        padding: 0;
        margin: 24px 24px 0 24px;
        height: calc(100vh - 24px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 24px;

        .invert-mask {
            display: none;
        }

        @media (width >900px) {
            .invert-mask {
                display: block;
                background-image: radial-gradient(circle, #11F03D, rgba(0, 255, 0, 50%) 75%);
                position: absolute;
                top: -50%;
                left: -50%;
                width: 50px;
                height: 50px;
                pointer-events: none;
                filter: invert(1);
                border-radius: 999px;
                background-size: cover;
                mix-blend-mode: difference;
                z-index: 2;
                transition: transform 0.15s ease-out;
                transform: translate(-50%, -50%) scale(1);
            }

            #invert-mask.scaled {
                transform: translate(-50%, -50%) scale(3);
            }
        }

        .top {
            z-index: 1;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            font-family: 'Delight', sans-serif;
            font-weight: 600;
            font-size: 16px;
            color: #AE041E;

            a {
                text-decoration: none;
                color: #AE041E;
            }
        }
    }

    h1 {
        z-index: 1;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
        font-family: 'Thunder', sans-serif;
        font-weight: 700;
        font-size: 180px;
        color: #AE041E;
        line-height: normal;
        user-select: none;

        @media (width <900px) {
            font-size: 120px;
            flex-direction: column;
            gap: 0;
        }
    }


}