:root {
    color-scheme: dark;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

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

body {
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    background: #2c2c2c;
    color: #fff7ee;
}

main {
    display: grid;
    justify-items: center;
    gap: 1.4rem;
    width: min(760px, 100%);
    text-align: center;
}

.logo {
    display: block;
    width: min(620px, 92vw, 72vh);
    height: auto;
}

.guide-link {
    display: inline-block;
    padding: .8rem 1.15rem;
    border: 1px solid #ff9a5d;
    border-radius: 999px;
    background: #201916;
    color: #ffb27f;
    font-size: clamp(1rem, 2.8vw, 1.2rem);
    font-weight: 750;
    text-decoration: none;
}

.guide-link:hover,
.guide-link:focus-visible {
    background: #f04a16;
    color: #241008;
    outline: none;
}
