:root {
    color-scheme: light;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    color: #161616;
    background: #fff;
}

* { box-sizing: border-box; letter-spacing: 0; }

body {
    margin: 0;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
}

main {
    flex: 1;
    display: grid;
    place-items: center;
    min-width: 0;
    padding: 24px 16px;
}

.brand {
    width: min(100%, 580px);
    margin: 0;
    line-height: 0;
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
}

footer {
    flex: none;
    padding: 0 16px 24px;
    color: #717171;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-height: 540px) and (min-width: 600px) {
    .brand { width: min(100%, 350px); }
}
