@import url("https://fonts.googleapis.com/css2?family=JetBrains Mono:wght@400;800&display=swap");
#back {
  background: #eee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body {
  margin: 20px;
  font-family: "JetBrains Mono", monospace;
}
body #container {
  width: 80%;
  margin: 0 auto;
}
body h1 {
  margin: 0 0 10px;
  font-size: 49px;
  line-height: 49px;
}
body h2 {
  margin: 5px 0 15px;
  line-height: 40px;
  font-size: 35px;
  color: #444;
  font-weight: 800;
}
body p {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 24px;
}
body header, body article, body footer {
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
body header {
  color: #eee;
  position: relative;
}
body header #switcher {
  position: absolute;
  right: 40px;
  bottom: 25px;
  border-radius: 15px;
  width: 160px;
  height: 30px;
  background: #999;
  cursor: pointer;
}
body header #switcher div {
  position: absolute;
  left: 0;
  width: 80px;
  height: 30px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 0 10px #111;
  transition: 0.4s;
}
body header #switcher span {
  position: absolute;
  top: 0;
  width: 80px;
  line-height: 30px;
  font-size: 0.8em;
  text-align: center;
  color: #000;
}
body header #switcher span.ita {
  right: 0;
}
body header #switcher:hover {
  color: #e03;
}
body main {
  margin: 30px 0;
}
body main article {
  padding: 25px 40px;
  background: white;
}
body main article a {
  font-weight: bold;
  color: #e03;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: 0.3s;
}
body main article a:hover {
  color: #111;
}

@media screen and (max-width: 1024px) {
  body #container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  body header #switcher {
    right: 20px;
    bottom: 20px;
  }
  body main article {
    padding: 20px 20px;
  }
  body footer {
    padding: 20px 20px;
  }
}
@media print {
  #back {
    display: none;
  }

  body {
    margin: 0;
  }
  body #container {
    width: 100%;
  }
  body h1 {
    font-size: 35px;
  }
  body h2 {
    font-size: 25px;
  }
  body p {
    font-size: 13px;
    line-height: 18px;
  }
  body header, body article, body footer {
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid gray;
    page-break-inside: avoid;
  }
  body header {
    color: black;
  }
  body header #switcher {
    display: none;
  }
  body main {
    margin: 0;
  }
  body main article {
    padding: 20px 0;
  }
  body footer {
    padding: 20px 0;
    background: initial;
  }
  body footer p, body footer p a {
    color: black;
  }
}

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