body {
  background: #000;
  color: #f7f7ba;
  padding: 0;
  margin: 0;
  font-family: monospace;
  font-size: 18px;
}

nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

nav li {
  list-style-type: none;
  display: inline-block;
  padding: 1em;
}

.lang-hu li[lang="hu"],
.lang-en li[lang="en"] {
  display: none;
}

#chaos_star_svg {
  position: fixed;
  top: 5vh;
  left: 5vw;
  margin: auto;
  max-height: 90vh;
  max-width: 90vw;
  height: 90vh;
  width: 90vw;
  display: block;
  z-index: 1;
  margin-left: 0;
  transition: margin-left 10s linear 1s;
}

#chaos_star {
  fill-opacity: 1;
  fill-rule: evenodd;
  stroke: #f01010;
  stroke-width: 1;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 4;
  stroke-opacity: 1;
  stroke-dasharray: 6000;
  stroke-dashoffset: -6000;
  transition: stroke-dashoffset 10s linear 1s, fill .2s linear 11s, stroke .2s linear 11s;
}

#chaos_star_svg.filled #chaos_star {
  stroke-dashoffset: 0;
  stroke: #bb9;
  fill: #885;
}

main {
  position: relative;
  padding: 3vw;
  max-width: 800px;
  background: rgba(0,0,0,.5);
  z-index: 2;
  text-shadow: 0 0 4px black;
}

main > p:hover,
main > ul:hover {
  color: #fafada;
}

a {
  color: #88f;
}

main a.arrow:after {
  content: "»";
}

a:hover, a:active, a:focus {
  color: #8ff;
}

h1, h2 {
  color: #a01010;
}

@media only screen and (orientation: landscape) {
  #chaos_star_svg.filled {
    margin-left: -50vw;
  }

  main {
    margin-left: 40vh;
  }
}

@media only screen and (orientation: portrait) {
  #chaos_star_svg.filled {
    top: auto;
    left: auto;
    bottom: -35vh;
    right: -40vw;
  }

  body {
    padding-bottom: 30vh;
  }
}
