@font-face {
    font-family: 'ABC Diatype';
    src: url('../fonts/abc-diatype-regular.woff2') format('woff2'),
        url('../fonts/abc-diatype-regular.woff') format('woff'),
        url('../fonts/abc-diatype-regular.ttf') format('truetype'),
        url('../fonts/abc-diatype-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'ABC Diatype', system-ui, -apple-system, 'Segoe UI', Roboto,
        'Helvetica Neue', Arial, sans-serif;
    height: 100%;
    min-height: 100vh;
    margin: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    height: 100%;
}

.brand {
    font-family: 'ABC Diatype', system-ui, -apple-system, 'Segoe UI', Roboto,
        'Helvetica Neue', Arial, sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    margin: 0 0 1rem 0;
    color: #fff;
}

:root {
    color-scheme: light;
}

.logo-container {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

img.logo {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

h1 {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
}
