@charset "UTF-8"; /* MIT/GPLv2 License | Daniel */
html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  background-image: linear-gradient(
    -210deg,
    #d7a5ca,
    #9767e0,
    #6f3096,
    #781e73
  );
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

.container {
  height: 100%;
  overflow: hidden;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

* {
  box-sizing: border-box;
}

body.topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

[hidden] {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
