html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #0153ff;
  position: relative;
  color: #ffffff;
  font-size: 16px;
  font-family: Helvetica, sans-serif;
}

html .container,
body .container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

html .container #underlay,
body .container #underlay {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}

html .container #underlay p,
body .container #underlay p {
  text-align: center;
}

html .container video,
body .container video {
  display: block;
  position: relative;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
}

html .container .overlay,
body .container .overlay {
  display: flex;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 40px;
}

html .container .overlay h1,
body .container .overlay h1 {
  text-shadow: 0px 0px 2px #616161;
}

html .container .overlay .bottom,
body .container .overlay .bottom {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

html .container .overlay .bottom p,
body .container .overlay .bottom p {
  text-align: center;
  text-shadow: 0px 0px 2px #616161;
}

html a,
body a {
  color: #ffffff;
  text-decoration: none;
}

html a:focus,
body a:focus {
  color: #ffffff;
  text-decoration: none;
}

