@layer base {
    video {
        max-width: 75rem;
        width: 100%;
        clip-path: inset(1px 1px 1px 1px round .5rem);
        @media(width < 85rem) {
            max-width: 60rem !important;
        }
    }

    h2, h1 {
        text-align: center;
    }

    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.25rem;
    }

    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 10rem;
        padding: 1ch;

        > .body-item {
            max-width: 75rem;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }

        > .top-margin {
            margin-top: 7rem;
        }

        > h2 {
            margin-top: 7rem;
            margin-bottom: 3rem;
        }

        > h1 {
            margin-top: 10rem;
            max-width: 22ch;
            font-weight: 800;
            line-height: 1em;

            @media(height < 60rem) {
                margin-top: 5rem;
            }
        }
    }

    form {
        display: grid;
        grid-template-columns: auto 1fr;

        label {
            text-align: right;
            display: grid;
            grid-template-columns: subgrid;
            grid-column: 1 / -1;
        }

        button {
            margin-top: 1rem;
            grid-column: 1 / -1;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            max-width: 20ch;
            width: 100%;
        }
    }

    #waitlist {
        padding: 1rem;
        border-radius: .5rem;
        border: 1px solid silver;
    }

    #deploy {
        margin-top: 2rem;
        margin-bottom: 4rem;
    }
}
