@import url("https://fonts.googleapis.com/css2?family=Homenaje&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
#back {
  background: #eee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body {
  margin: 20px;
  font-family: Inter, sans-serif;
}
body #container {
  width: 80%;
  margin: 0 auto;
}
body h1 {
  margin: 0 0 10px;
  font-size: 3.5em;
  line-height: 49px;
  font-family: Homenaje;
  font-weight: 400;
}
body h2 {
  margin: 5px 0 15px;
  line-height: 40px;
  font-family: Homenaje;
  font-size: 35px;
  font-weight: 400;
}
body p {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 24px;
}
body header, body footer {
  border-radius: 5px;
}
body header {
  position: relative;
}
body header #switcher {
  position: absolute;
  right: 40px;
  bottom: 25px;
  border-radius: 15px;
  width: 160px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5333333333);
  cursor: pointer;
}
body header #switcher div {
  position: absolute;
  left: 0;
  width: 80px;
  height: 30px;
  border-radius: 15px;
  background: #8d03ff;
  box-shadow: 0 0 10px linear-gradient(15deg, #DD8DFF, #61FFA8);
  transition: 0.4s;
}
body header #switcher span {
  position: absolute;
  top: 0;
  width: 80px;
  line-height: 30px;
  font-size: 0.8em;
  text-align: center;
}
body header #switcher span.ita {
  right: 0;
}
body header #switcher span.selected {
  color: white;
  font-weight: bold;
}
body header #switcher:hover {
  color: #8d03ff;
}
body main {
  margin: 30px 0;
}
body main article {
  padding: 20px 10px;
  border-top: 2px solid black;
}
body main article a {
  font-weight: bold;
  color: #8d03ff;
  text-decoration-thickness: 0px;
  text-underline-offset: 3px;
  transition: 0.1s;
}
body main article a:hover {
  color: #58007b;
  text-decoration-thickness: 3px;
}
body main article ul {
  padding-left: 10px;
  list-style-type: none;
}
body main article ul li {
  margin: 0 0 10px;
}
body main article ul li a::before {
  display: inline-block;
  width: 20px;
  content: url("/img/page.svg");
  vertical-align: sub;
}

@media screen and (max-width: 1024px) {
  body #container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  body {
    margin: 10px;
  }
  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 */
