body {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  /* position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1; */
}

#backgroundImage {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

#search {
  text-align: center;
  padding: 40px 0 10px 0;
}

#search input {
  outline: none;
  width: 90%;
  border: 0;
  font-size: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-shadow: 0px 1px 1px #999;
}

#search input::placeholder {
  color: #ccc;
  text-shadow: none;
}

.level {
  display: flex;
  /* justify-content: center; */
  overflow-x: scroll;
  padding-left: 50vw;
}

.item {
  /* width: 140px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 10px;
  opacity: 0.6;
  transition: all 0.3s;
  cursor: pointer;
  transform: translateX(-50%) scale(0.8);
}

.item:hover,
.item.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.image {
  width: 100px;
  height: 100px;
  /* border: 1px solid red; */
  /* background: no-repeat left top cover; */
  background-position: center center;
  background-size: cover;
}

.item.current .image {
  border: 5px solid white;
}

.name {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-shadow: 0px 1px 2px #333;
}
