:root {
    color-scheme: dark;
    font-family: system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    display: grid;
    min-width: 20rem;
    min-height: 100vh;
    margin: 0;
    place-items: center;
    padding: 1rem;
    color: #f3f7ff;
    background: #080b12;
}

main {
    width: min(100%, 42rem);
    padding: clamp(1.5rem, 6vw, 3rem);
    border: 1px solid rgb(183 202 228 / 18%);
    border-radius: 1rem;
    background: #111827;
}

.eyebrow,
.error-code {
    color: #63e6be;
    font-family: ui-monospace, monospace;
}

.error-code {
    margin: 0;
    font-size: clamp(3rem, 15vw, 7rem);
    font-weight: 800;
    line-height: 1;
}

h1 {
    font-size: clamp(2rem, 8vw, 4rem);
}

p {
    color: #b8c5d8;
    line-height: 1.7;
}

a {
    color: #63e6be;
}
