/* FIXME: the sidebar blur moves the video to some random position for some reason */
/* .background-vid { */
.background-img {
  width: 100%;
  height: 100%;
  /* * this thing has something to do with the blur */
  /* width: 100vw;
  height: 100vh; */
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  filter: blur(12px);
}
.dapage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 50px;
  border-radius: 70px;
}
#kl-logo {
  width: 200px;
  animation-name: rotate;
  animation-duration: 2s;
}
@keyframes rotate {
  100%{transform: rotateZ(360deg);}
}
.title {
  color: white;
  margin-bottom: 0;
}
.motto {
  margin-top: 0;
  font-style: italic;
}
.info {
  width: 550px;
}
