:root {
    --header-color: #0d94ff;
    --bg-light: #f2f2f2;
    --bg-dark: #e6e6e6;
    --footer-color: #0d94ff;
}

*, *::after, *::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: auto;
    word-break: break-word;
}

html {
    background-color: pink;
}

body {
    background-color: red;
    display: flex;
    flex-direction: column;
    font-size: 14pt;
    font-family: sans-serif;
    scroll-behavior: smooth;
}
