@import url("https://fonts.googleapis.com/css2?family=Momo+Trust+Display&display=swap");

* {
  font-family: "Momo Trust Display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #111111;
  width: 100dvw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  position: fixed;
}

body::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  background: url("/img/index_database.png") 0 0 repeat;
  background-repeat: repeat;
  background-size: 140px 140px;
  animation: slideBackground 10s linear infinite;
  transform: rotate(-10deg);
}

@keyframes slideBackground {
  from {
    background-position: -140px 0px;
  }
  to {
    background-position: 0 -140px;
  }
}

#title-container {
  position: fixed;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
}

#title {
  color: #da3e52;
  font-size: 3rem;
}

#subtitle {
  color: #f2e94e;
  font-size: 1rem;
  transform: rotateZ(-5deg);
}

#prompt {
  color: #23967f;
  font-size: 2rem;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 0 !important;
  background: #5c6664;
  background-image: none;
  flex: 1;
  padding: 0 0.5em;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
}

select::-ms-expand {
  display: none;
}

.select {
  position: relative;
  display: flex;
  width: 20em;
  height: 3em;
  line-height: 3;
  background: #5c6664;
  overflow: hidden;
  border-radius: 0.25em;
}

.select::after {
  content: "\25BC";
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  color: #23b499;
  background: #2b2e2e;
  cursor: pointer;
  pointer-events: none;
  transition: 0.25s all ease;
}

.select:hover::after {
  color: #23b499;
}

#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

#create-button {
  position: relative;
  color: #bced09;
  border: solid 3px #bced09;
  border-radius: 1rem;
  background-color: #262626;
  padding: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  width: fit-content;
  transition: 200ms;
}

#create-button:hover {
  scale: 1.05;
}

#create-button:active {
  scale: 0.95;
}
