body, html {
  font-family: Arial, sans-serif;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #232323;
}

video {
  height: 100%;
  width: 100%;
  position: fixed;
  object-fit: cover;
  filter: blur(3px);
  -webkit-filter: blur(3px);
}

.overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.backdrop {
  background-image: linear-gradient(0deg, transparent 50%, rgba(0, 0, 0, 0.05) 50%);
  background-size: 16px 16px;
  background-color: rgba(0, 0, 0, 0.2);
  filter: blur(3px);
  -webkit-filter: blur(3px);
}

.title {
  margin: auto 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.2rem;
}

.attribution {
  justify-self: flex-end;
  margin: 20px 0;
  color: #aaa;
  font-size: 0.8rem;
}

a {
  color: inherit !important;
}