/* Flower18 baseline: keep every page aligned to the device viewport. */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
}

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