/* FONT */
@font-face {
    font-family: 'Creato Display';
    font-weight: 100;
    font-style: normal;
    src: url('font/CreatoDisplay-Thin.otf') format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'Creato Display';
    font-weight: 100;
    font-style: italic;
    src: url('font/CreatoDisplay-ThinItalic.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    font-weight: 300;
    font-style: normal;
    src: url('font/CreatoDisplay-Light.otf') format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'Creato Display';
    font-weight: 300;
    font-style: italic;
    src: url('font/CreatoDisplay-LightItalic.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    font-weight: 400;
    font-style: normal;
    src: url('font/CreatoDisplay-Regular.otf') format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'Creato Display';
    font-weight: 400;
    font-style: italic;
    src: url('font/CreatoDisplay-RegularItalic.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    font-weight: 500;
    font-style: normal;
    src: url('font/CreatoDisplay-Medium.otf') format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'Creato Display';
    font-weight: 500;
    font-style: italic;
    src: url('font/CreatoDisplay-MediumItalic.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    font-weight: 700;
    font-style: normal;
    src: url('font/CreatoDisplay-Bold.otf') format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'Creato Display';
    font-weight: 700;
    font-style: italic;
    src: url('font/CreatoDisplay-BoldItalic.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    font-weight: 800;
    font-style: normal;
    src: url('font/CreatoDisplay-ExtraBold.otf') format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'Creato Display';
    font-weight: 800;
    font-style: italic;
    src: url('font/CreatoDisplay-ExtraBoldItalic.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    font-weight: 900;
    font-style: normal;
    src: url('font/CreatoDisplay-Black.otf') format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'Creato Display';
    font-weight: 900;
    font-style: italic;
    src: url('font/CreatoDisplay-BlackItalic.otf') format('opentype');
    font-display: swap;
}

* {
    font-family: 'Creato Display', sans-serif;
}


/* MAIN */
body {
    margin: 0;
    padding: .25rem;

    max-width: 800px;
    width: 100%;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    * {
        width: 100%;
        margin-bottom: .25rem;
    }
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: .1rem;
}

.flex-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;

    align-items: center;
    justify-content: center;

    * {
        width: 100%;
        @media (min-width: 800px) { flex: 1; min-width: 0; }
    }

    @media (max-width: 800px) {
        img {
            order: -1;
        }

        flex-direction: column;
    }
}

button {
    padding: .1rem;

    border-radius: 0;
    border: 1px dashed black;
    font-size: medium;
}

.center-title {
    text-align: center;

    padding: 1rem;
    width: 100%;
}

.center-text {
    text-align: center;
    width: 100%;
}

.tiny-print {
    font-size: smaller;
}
