@charset "UTF-8";
@font-face {
  font-family: "Varela Round";
  src: local("Varela Round"),
    url("fonts/VarelaRound-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  padding: 0 20px;
  background: white;
  font-size: 5vw;
  color: black;
  font-family: "Varela Round", sans-serif;
}
:focus { outline: 0; }
h1, h2, h3 {
  font-weight: normal;
}
a {
  text-decoration: none;
  color: gray;
}
section, footer {
  padding: 5% 0 0;
}
footer ul {
  list-style: none;
}
footer ul li {
  display: inline;
}
footer ul li+li:before {
  content: "| ";
}
footer ul li img {
  position: absolute;
  size: 5vw;
  margin-top: -15px;
  padding-left: 20px;
}
/* lang */
h2, main, footer>ul {
  display: none;
}
html:lang(de) [class="de"] {
  display: unset;
}
html:lang(en) [class="en"] {
  display: unset;
}
html:lang(it) [class="it"] {
  display: unset;
}
html:lang(jp) [class="jp"] {
  display: unset;
}
