/* RESET =================================================================== */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
fieldset,
legend,
input,
textarea,
img,
blockquote,
iframe,
code,
pre {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}

/* BASE ==================================================================== */

html {
  height: 100%;
}

@keyframes gradient {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

body {
  background: linear-gradient(
    to right,
    #f17c58,
    #e94584,
    #24aadb,
    #27dbb1,
    #ffdc18,
    #ff3706
  );
  background-size: 600% 100%;
  animation: gradient 16s linear infinite;
  animation-direction: alternate;

  font-size: 10px;
  height: 100%;
  padding: 4px 0 0;
}

@media (min-width: 700px) {
  body {
    font-size: 20px;
  }
}

#wrap {
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  position: relative;
}

#wrap.nojs {
  background: #27292c;
}

#wrap:after {
  background: radial-gradient(circle, transparent 69%, #27292c 100%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

#canvas {
  position: fixed;
}

.content {
  color: #ddd;
  text-align: center;
}
