html,
body {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  background-color: #000;
}

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

.logo {
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 3;
  opacity: 0.9;
}

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 {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  color: #fff;
  text-decoration: none;
  display: block;
  font-weight: bold;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.contact-link:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 98%;
  height: 1px;
  background-color: #fff;
  transform: scale(1);
  transition: transform 0.3s ease-out;
}

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