/* ===========================================
   Premium Domain Sales Landing Page
   =========================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 2rem;

    background: #111;
    color: #f5f5f5;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    line-height: 1.6;
    text-align: center;
}

main {
    width: 100%;
    max-width: 700px;
}

h1 {
    margin: 0 0 1.5rem;

    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    word-break: break-word;
}

p {
    margin: 0;

    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

a:hover {
    opacity: 0.8;
}

small {
    display: block;
    margin-top: 2rem;

    font-size: 0.9rem;
    opacity: 0.65;
}

@media (max-width: 480px) {

    body {
        padding: 1.5rem;
    }

    h1 {
        margin-bottom: 1.25rem;
    }
}