:root {
    --footer-h: 3.25rem;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100dvh;
    overflow: hidden;
    overscroll-behavior: none;
}

body {
    margin: 0;
    font: 400 1rem/1.6 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #fff;
    background: #000 url("../assets/background.jpeg?v=v8.20251016201218") center / cover no-repeat;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

    .skip-link:focus {
        left: 1rem;
        top: 1rem;
        width: auto;
        height: auto;
        padding: .5rem 1rem;
        background: #000;
        color: #fff;
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

.hero {
    height: calc(100dvh - var(--footer-h));
    display: grid;
    place-items: center;
    text-align: center;
}

.tagline {
    margin: 0;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.5vw + 1rem, 2.5rem);
    text-shadow: 0 2px 8px rgba(0,0,0,.6);
}

.email {
    color: #fff;
    text-decoration: none;
}

    .email:focus, .email:hover {
        text-decoration: underline;
        outline: none;
    }

footer {
    position: fixed;
    inset-inline: 0;
    inset-block-end: 0;
    block-size: var(--footer-h);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0 .75rem;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(2px);
}