*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  background: white;
}

.video-wrapper {
  width: 100%;
  height: 100vh;
}

video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

nav {
  display: none;
	position: absolute;
    right: 0px;
    bottom: 45px;
    color: #ff5e00;
    font-family: sans-serif;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: .1em;
    padding: 0 3em;
}
nav a {
	color: #ff5e00;
	text-decoration: none;
}
nav a:hover {
	text-decoration: underline;
}


@media (max-width:700px) {
	body {
		display: flex;
        flex-direction: column;
        justify-content: space-evenly;
	}
	.video-wrapper {
	    height: auto;
	}
	nav {
		position: unset;
	}
}

		