@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: "Open Sans";
    font-style: normal;
    line-height: 1.7em;;
}


.container {
    position: relative;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* desktop */
@media (max-resolution: 150dpi) {
:root {
    font-size: 18px; 
}

.container {
    /* display: flex; */
}
}

/* mobile */
@media (min-resolution: 150dpi) {
:root {
    font-size: 28px; 
}

.container {
    display: block;
    padding: 2em;
    overflow: scroll;
}
}

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

h1 {
    font-weight: 500;
}

.page {
    position: relative;
    padding: 1em 3em;
    border: solid 1px #e3e3e3;
    min-width: 18em;
    max-width: 50em;
    background: #f3f3f3;
    border-radius: 0.5em;
    color: #020202;

    margin: 1em auto;
}

p, li {
    font-size: 1rem;
}

#footer {
    position: absolute;
    bottom: -3em;
    line-height: 3em;
    text-align: center;
    font-size: 0.8em;
    color: #ccc;
    width: 100%;
    box-sizing: border-box;
    left: 0;
}