@font-face {
    font-family: 'Mona Sans';
    src:
      url('Mona-Sans.woff2') format('woff2 supports variations'),
      url('Mona-Sans.woff2') format('woff2-variations');
    font-weight: 200 900;
    font-stretch: 75% 125%;
  }
  
html {
    font-family: 'Mona Sans';
}

h1 {
    line-height: 0;
    font-size: 3rem;
}

h2 {
    font-size: 1.2rem;
    line-height: 1.5;
}

p {
    font-size: 1rem;
}

.icon {
    height: 40px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-container {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    background-color: #eeeeee;
    border-radius: 10px;
    padding: 20px;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #202020;
        color: #ffffff;
    }
    .page-container {
        background-color: #434343;
    }
}