html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  /* push behind everything */
  /* pointer-events: none; /* allows clicks to pass through */
}

.logo {
  max-height: 30px;
  height: auto;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

figure {
  margin: 0;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  transform: translate3d(-50%, -50%, 0);
}

.contact-link {
  color: #fff;
  text-decoration: none;
  display: block;
  font-weight: 300;
  font-size: 22px;
  font-family: 'Roboto', Arial, sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.contact-link:hover:after {
  transform: scaleX(1);
}

.contact-link:hover:after {
  transform: scale(0);
}