* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  /* backdrop-filter: blur(1px); */
  background-color: rgba(52, 52, 52, 0.25);
}

.top-left .logo {
  width: 20rem;
  height: auto;
}

.bottom-left {
  position: relative;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  font-family: "Courier New", Courier, monospace;
  font-weight: 500;
}

.bottom-left::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 17.5rem;
  width: 0.5rem;
  height: 1rem;
  background-color: #fff;
  animation: blink 1s step-end infinite;
}

.bottom-left a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 600px) {
  .top-left .logo {
    width: 10rem;
  }
}


@keyframes blink {
  50%{
    opacity: 0;
  }
}
