* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: #1d2021;
    color: #ebdbb2;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

a {
    color: #83a598;
}

a:hover {
    color: #8ec07c;
}

.lang-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.lang-switcher button {
    border: 1px solid #665c54;
    background-color: #282828;
    color: #ebdbb2;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
}

.content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.presentation {
    max-width: 680px;
    margin-bottom: 150px;
    font-size: 20pt;
}

.presentation p {
    margin: 0;
}

.links {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}