@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
body {
  margin: 0; }

:root {
  --main-bg-color: #111;
  --main-font-color: #dadada; }

.page {
  color: var(--main-font-color);
  min-height: 100vh;
  background: var(--main-bg-color);
  -webkit-background-size: cover;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  line-height: 1.3em;
  font-size: 4em;
  text-align: center; }
  .page a {
    color: var(--main-font-color); }
  @media only screen and (max-width: 700px) {
    .page {
      font-size: 3em; } }
  @media only screen and (max-width: 550px) {
    .page {
      font-size: 2em; } }
  @media only screen and (max-width: 350px) {
    .page {
      font-size: 1.5em; } }

/*# sourceMappingURL=main.css.map */