/* Reset and base styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    overflow-x: auto;
    font-family: 'Montserrat', sans-serif;
}

* {
    font-family: inherit;
}
