:root {
    min-height: 100%;
    background: #000 url("https://m.doughmination.gay/img/bg/main.png") center center / cover fixed no-repeat;
}

html,
body {
    min-height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: white;

    text-align: center;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1,
p,
footer > div {
    display: inline-block;

    margin: 0.5rem;
    padding: 0.35em 0.7em;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border-radius: 12px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(255, 255, 255, 0.08);

    width: fit-content;
}

h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 1;
}

p {
    font-size: clamp(1.25rem, 4vw, 2rem);
}

footer {
    position: fixed;
    right: 0.75rem;
    bottom: 0.75rem;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;

    font-size: clamp(0.7rem, 2vw, 0.85rem);
}

footer > div {
    margin: 0;
    border-radius: 8px;
    opacity: 0.75;

    display: flex;
    align-items: center;
    gap: 0.4em;
}

footer img {
    width: 1em;
    height: 1em;
    filter: invert(1);
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
    text-decoration: underline;
}

[hidden] {
    display: none !important;
}