* {
    box-sizing: border-box;
}
 
html,
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    background: #F8F8F6;
    color: #233A67;
    -webkit-font-smoothing: antialiased;
}

.page-content {
    flex: 1 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}