/* base.css */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Montserrat', Arial, sans-serif;
}

main {
    flex: 1;
}

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

button,
input,
select,
textarea {
    font: inherit;
    /* stops form controls having weird default fonts */
}

a {
    text-decoration: none;
}