@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

#KAOBanner {
  position: fixed;
  bottom: 0;
  width: 100%;
}

:root {
  --radius0: 13px;
  --radius1: 21px;
  --radius2: 9px;
  --radius3: 5px;
}

* {
  scrollbar-color: rgba(255, 255, 255, 0.4), transparent;
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.4);
}

html,
body {
  margin: 0;
  padding: 0;
  color: white;
  font-family: monospace;
  height: 100%;
  font-size: 16px;
  background-color: black;
}

body {
  background-image: url("/static/img/global/background.png");
  background-position: 30% center;
  background-size: cover;
  background-repeat: no-repeat;
}

h1.title {
  text-align: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 20%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

p.title {
  text-align: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 25%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: var(--radius2);
  width: fit-content;
  background-color: rgba(139, 8, 148, 0.5);
  backdrop-filter: blur(5px);
  padding: 4px 8px;
  white-space: nowrap;
}

form {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1000px;
  max-width: 80%;
  display: flex;
}

form input {
  margin: 0;
  font-family: monospace;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 25px !important;
  background-color: rgba(33, 32, 31, .75);
  backdrop-filter: blur(5px);
  border-radius: var(--radius1);
  height: fit-content;
  max-height: 80vh;
  overflow: visible;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  font-size: 20px;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  z-index: 0;
  color: white !important;
}

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

form button {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  height:40px;
  width: 40px;
  border-radius: var(--radius2);
  border: none;
  background-color: rgba(101, 98, 95, 0.5);
  color: white !important;
}

#clock {
  text-align: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 45%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: var(--radius2);
  width: fit-content;
  background-color: rgba(101, 98, 95, 0.5);
  backdrop-filter: blur(5px);
  padding: 4px 8px;
  white-space: nowrap;
  font-size: 16px;
}