* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    background: #fff;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
}

nav {
    position: fixed;
    z-index: 1;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

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

nav a:hover,
nav a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

nav [aria-current="page"] {
    color: #888;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 24px;
}

h1 {
    margin: 0;
    font-size: clamp(4rem, 18vw, 18rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1;
    text-align: center;
}

html[lang="en"] h1 {
    font-size: clamp(3rem, 14vw, 14rem);
}
