/* Barebones reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html,
body {
    height: 100%;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Minimal page styling */
body {
    min-height: 100svh;
    background: #dcd4ca;
    color: #111;
}

main {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.finch-image {
    width: min(560px, 88vw);
    height: auto;
}
