body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.center {
  text-align: center;
  z-index: 1;
}

.logo {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 50%;
  height: auto;
}

.line-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.line-container.border {
  border-radius: 10px;
  padding: 16px 32px;
  margin-top: 30px;
  border: 4px solid #cc0066;
  box-shadow: 0 0 25px rgba(204, 0, 102, 0.6);
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.label {
  color: #cc0066;
  font-size: 18px;
  font-weight: bold;
}

.button {
  background-color: transparent;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 10px;
}

.button.style {
  color: #cc0066;
  border: 4px solid #cc0066;
  box-shadow: 0 0 25px rgba(204, 0, 102, 0.6);
}

.button.style:hover {
  box-shadow: 0 0 50px rgba(204, 0, 102, 0.9);
}

.button.disabled {
  opacity: 0.5;
  pointer-events: none;
  box-shadow: none;
}

.bg-video {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  filter: opacity(.5);
  z-index: 0;

  user-select: none;
  pointer-events: none;
}

.bottom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
