@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
@import "highlightjs.css";

html {
    height: 100%;
    box-sizing: border-box; /* https://css-tricks.com/box-sizing/ */
    font-size: 62.5%;
}
*, *:before, *:after {
    box-sizing: inherit; /* https://css-tricks.com/box-sizing/ */
}
*:focus {
    outline: 0;
}
body {
    margin: 0;
    height: 100%;
    overflow: auto;
    font-size: 1.6rem;
    font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
}
#root {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
