@import url("https://fonts.googleapis.com/css?family=Special+Elite");
body,
html {
  height: 100%;
  font-size: 20px;
}

body {
  background-color: #1b1b1b;
  font-family: "Special Elite", Arial, Helvetica, sans-serif;
}

noscript {
  color: rgb(201, 17, 106);
  position: absolute;
}

noscript > p {
  width: 255px;
}

noscript > p > a {
  color: rgb(126, 9, 66);
}

div,
input,
.void-butt {
  font-family: "Special Elite", Arial, Helvetica, sans-serif;
}

#blackhole {
  height: 100%;
  width: 100%;
  display: flex;
}

.login-container {
  width: 255px;
  height: 255px;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -128px;
  margin-left: -128px;
  z-index: 2;
  text-align: center;
  transition: all 500ms;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.login-container.open {
  opacity: 0;
  pointer-events: none;
}

.come-inside {
  display: flex;
  flex-direction: column;
}

.enter {
  width: 200px;
}

.enter input {
  font-size: 16px;
  text-align: center;
  margin-bottom: 5px;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.show {
  transition: all 1000ms;
  opacity: 1;
}

.hide {
  transition: all 300ms;
  opacity: 0;
}

.hide-slow {
  transition: all 600ms;
  opacity: 0;
}

.void-butt {
  background-color: rgb(224, 16, 115);
  border: none;
  color: whitesmoke;
  height: 35px;
  border-radius: 10%;
  font-size:18px;
  margin-top: 10px;
  outline: 1px solid #1e1e1e;
  transition: outline-color 300ms linear;
  margin: 8px;
  margin-left: 50%;
  transform: translate(-50%, 0);
  padding-top: 4px;
}

.void-butt:hover {
  outline-color: rgb(245, 245, 245);
}

.nuh-uh {
  color: rgb(201, 17, 106);
  position: absolute;
  top: 190px;
  left: 50%;
  transform: translate(-50%, 0px);
  font-size: 12px;
  width: 200px;
  margin-top: 6px;
}

.nope {
  display: none;
}

.password-input {
  height: 35px;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  border-bottom: 1px solid grey;
  transition: all 500ms ease-in-out;
  color: rgb(224, 16, 115);
  outline: 0;
}

.password-input:hover {
  border-bottom: 1px solid rgb(122, 0, 59);
  border-radius: 7px;
}

.password-input:focus {
  border-bottom: 1px solid rgb(122, 0, 59);
  border-radius: 14px;
}

canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: auto;
}

.welcome {
  position: absolute;
  width: 450px;
  height: 300px;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgb(224, 16, 115);
  max-width: 95%;
}

.welcome > button {
  display: none;
   width: 100px; /* Adjust the width as needed */
  height: 100px; /* Set the height to match the width */
  border-radius: 50%;  /* Make the button a complete circle */
opacity: 0.7; /* Adjust the opacity value as needed */
  font-size: 26px;
  align:center;
  position: absolute;
  top: 50%;      /* Center the button vertically */
  left: 0%;     /* Center the button horizontally */
  transform: translate(-50%, -50%);  /* Center the button perfectly */
}

.welcome > h1 {
  width: 450px;
  max-width: 100%;
  margin-left: 50%;
  transform: translate(-50%, 0);
}

.welcome > p {
  line-height: 1.5;
  width: 450px;
  max-width: 100%;
  margin-left: 50%;
  transform: translate(-50%, 0);
  color: #f3f3f3;
}

#demo {
  display: unset;
}

.pretix-widget-frame-holder {
  background: unset;
}

.loader-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.loader {
  border: 5px solid rgb(224, 16, 115);
  border-radius: 50%;
  border-top: 5px solid #f3f3f3;
  width: 15px;
  height: 15px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
