@font-face {
  font-family: "font";
  src: url("font.woff2");
}

:root {
  --color: red;
}

body {
  margin: 0;
  padding: 0;
  background-color: black;
  overflow: hidden;
  font-family: "font";
  color: white;
  user-select: none;
}

a {
  color: white;
  text-decoration: none;
  padding: 0;
}

.container {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-bottom: 20px
}

.pre-container {
  white-space: pre-wrap;
}

.card-container {
  display: flex;
  justify-content: center;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.card {
  background: rgba(0, 0, 0, .5);
  border: none;
  border-radius: 20px;
  padding: 20px;
  width: 612px;
  box-shadow: none;
  max-width: 600px;
}

.banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto; /* Adjust the height based on content */
  width: 80%;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center:hover {
  color: red;
  cursor: pointer;
}


#box {
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  padding: 10px;
  position: relative;
}

#border {
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  pointer-events: none;
  z-index: -1;
}


#borderTop,
#borderBottom {
  position: absolute;
  width: 0%;
  height: 4px;
  background-color: purple;
}

#borderRight,
#borderLeft {
  position: absolute;
  width: 3px;
  height: 0%;
  background-color: purple;
}

video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
  filter: blur(5px) brightness(30%);
  pointer-events: none;
}

#clickToPlay {
  opacity: 0;
  transition: 0ms;
  position: absolute;
  color: white;
  font-size: 32px;
  cursor: default;
  width: 100%;
  height: 100%;
  z-index: 10;
}

#main {
  opacity: 0;
  transition: 5s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-75%, -75%);
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

pre {
  font-weight: bold;
  font-size: 16px;
  user-select: none;
  color: white;
  background: repeating-linear-gradient(-45deg, rgb(226, 29, 226) 0%, rgb(45, 80, 233) 12.5%, rgb(255, 255, 255) 25%, rgb(181, 47, 221) 37.5%, rgb(0, 0, 0) 50%);
  background-size: 60vw 60vw;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: slide 5s linear infinite forwards;
}

@keyframes slide {
  0% {
    background-position-x: 0%;
  }

  100% {
    background-position-x: 60vw;
  }
}

#widgetContainer {
  opacity: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 400px;
  height: 38px;
  background: repeating-linear-gradient(-45deg, rgb(128, 0, 128) 0%, rgb(78, 49, 243) 12.5%, rgb(255, 255, 255) 25%, rgb(128, 0, 128) 37.5%, rgb(0, 0, 0) 50%);
  background-size: 60vw 60vw;
  animation: slide 5s linear infinite forwards;
  transition: 2s;
}

#widget {
  position: absolute;
  width: 394px;
  height: 29px;
  margin: 3px;
  background-color: black;
  z-index: 1;
  transition: 2s;

}

#widgetMain {
  position: absolute;
  display: inline-flex;
  justify-content: space-between;
  margin-top: 3px;
  padding-right: 10px;
  padding-left: 10px;
  width: 374px;
  height: 29px;
  z-index: 2;
  background-color: black;
}


.hitCount {
  position: fixed;
  bottom: 5px;
  right: 5px;
  transition: 3s;
  color: var(--color);
  font-size: 24px;
  opacity: 0;
  bottom: -3px;
}

a.hitCounter.badge-done0 {
  display: none !important;
}