@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

* {
  border: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
#flash,
#water,
object,
embed {
  height: 100%;
  width: 100%;
}

body {
  padding: 1em 2em;
  background: #fff;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 1s, color 1s;
}

body.dark {
  background-color: #000;
  color: #fff;
}

a {
  color: #000;
  text-decoration: none;
  transition: color 1s;
}
body.dark a {
  color: #fff;
}

a:hover {
  opacity: .5;
}

ul {
  list-style: none;
}

header {
  position: fixed;
  top: 2em;
  left: 2em;
  z-index: 2;
}

h1 {
  font-size: 100%;
  font-weight: 400;
  display: block;
}

header ul {
  display: block;
  margin: 2em 0;
}

header li {
  display: block;
}

canvas {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

#copyright {
  bottom: 0;
  left: 0;
  padding: 2.2em;
  position: absolute;
  z-index: 3;
}


@media screen and (max-width: 1000px) {
}

@media screen and (max-width: 435px) {
}


#switch {
  cursor: pointer;
  padding: 2.2em;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
