* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Source Code Pro', monospace; background:#000; color:#fff; }

/* Background GIF */
#bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  overflow: hidden;
}
#bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title */
#title {
  position: absolute;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
}
#title img {
  width: 30vw;
  max-width: 500px;
  height: auto;
}

/* Work in progress message */
.wrap {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {
  font-size: 5vh;
  text-shadow: 0 0 20px rgba(255,0,255,0.3);
}
