/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* Makes 1rem = 10px for easier calculations */
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    font-size: 1.6rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}