:root {
    color-scheme: dark;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: #181818;
    color: #f7f4ef;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 18rem;
    min-height: 100%;
}

body {
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    background:
        radial-gradient(circle at 15% 20%, rgb(92 18 18 / 44%), transparent 35rem),
        radial-gradient(circle at 85% 80%, rgb(16 63 34 / 38%), transparent 32rem),
        #181818;
}

main {
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    place-items: center;
    padding: clamp(1.25rem, 5vw, 4rem);
}

.holding-card {
    width: min(100%, 46rem);
    padding: clamp(2rem, 7vw, 5rem);
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 1.25rem;
    background: rgb(24 24 24 / 82%);
    box-shadow: 0 2rem 6rem rgb(0 0 0 / 42%);
}

.location {
    margin: 0 0 0.75rem;
    color: #d6aa1f;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(3rem, 11vw, 7rem);
    font-weight: 750;
    letter-spacing: -0.065em;
    line-height: 0.84;
    text-wrap: balance;
}

.message {
    max-width: 37rem;
    margin: clamp(2rem, 6vw, 3.5rem) 0 0;
    color: #d2ceca;
    font-size: clamp(1.1rem, 2.7vw, 1.35rem);
    line-height: 1.6;
}

.current-site {
    display: inline-flex;
    margin-top: 2rem;
    padding: 0.75rem 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration-color: #d6aa1f;
    text-decoration-thickness: 0.14rem;
    text-underline-offset: 0.45rem;
}

.current-site:hover {
    color: #f2d269;
}

.current-site:focus-visible {
    border-radius: 0.15rem;
    outline: 0.2rem solid #fff;
    outline-offset: 0.35rem;
}

@media (max-width: 30rem) {
    .holding-card {
        padding-inline: 1.5rem;
    }
}
