html,
body {
  margin: 0;
  padding: 0;
  font-family: "Courier New", Courier, monospace;
  color: white;
}

a {
  color: red;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #111111;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}

video {
  max-width: 100%;
  max-height: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}