@import url("https://fonts.googleapis.com/css?family=Montserrat:900");

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
}

#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

#bg-video.ready {
  opacity: 1;
}

ul {
  list-style-type: none;
  padding: 0;
}

.container {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  z-index: 1000;
  pointer-events: none;
}

.container ul.dots {
  display: flex;
  height: auto;
  width: auto;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.container ul.dots li {
  background: white;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}