html, body {
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  background-color: #000;
}

* {
  color: #FFFFFF;
  box-sizing: border-box;
  font-family: 'Roboto Mono';
  font-size: 1em;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
}

.outer {
	display: flex;
  flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 40em;
  width: 40em;
  padding: 2em;
  z-index: 2;
}

.mask {
  opacity: 0.9;
  position: absolute;
  background-color: #000000;
  mix-blend-mode: multiply;
  height: 40em;
  width: 40em;
  z-index: 1;
}

.video {
  position: fixed;
  top: 50%; left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
}

img {
  margin-bottom: 1rem;
  max-width: 100%;
}

.name, .email, .question, .message {
  border-radius: 0;
  padding: 1em;
  border: 0;
  margin-bottom: 1em;
  color: #000000;
  width: 100%;
}

.message {
  height: 5em;
}

.submit_button {
  font-weight: bold;
  margin: 0;
  width: auto;
  background-color: #148b29;
  border: 2px solid #148b29;
  padding: 0.5rem 3rem;
  color: #FFFFFF;
  transition-duration: 0.25s;
}

input[type="submit"]:hover {
  border: 2px solid #FFFFFF;
}