body {
  background-color: #000;
}

span {
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #263238 url("./background.jpg") no-repeat center center;
  background-size: cover;
  background-blend-mode:multiply;
  filter: blur(3px);
}

.container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 640px;
}

.title {
  font-size: 32;
  color: #CECECE;
  margin: 48px 0px;
  text-align: center;
}

.skill {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0% 8%;
}

.skill_button {
  display: flex;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #2632389E;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.skill_button:hover {
  background-color: #263238;
}

.playing {
  background-color: #37474FDE;
}

.playing:hover {
  background-color: #37474F;
}

.skill_button span {
  font-size: 28px;
  color: white;
}

.champion_name_container {
  position: absolute;
  width: 84%;
  margin: 48px 8% 0px 8%;
}

.input_container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 48px;
  background-color: #263238BA;
}

.input_champion_name {
  font-size: 22px;
  color: white;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
}

.input_dropdown {
  position: absolute;
  display: flex;
  right: 0px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.input_dropdown:hover {
  background-color: #263238DE;
}

.input_dropdown span {
  font-size: 20px;
  color: #CDCDCD;
  padding-bottom: 4px;
}

.input_champion_list {
  position: absolute;
  width: 100%;
  background-color: #263238;
  max-height: 154px;
  overflow: scroll;
}

.input_champion_list ul {
  margin: 0px;
  padding: 0px;
}

.input_champion_list li {
  list-style: none;
  cursor: pointer;
  margin: 0px;
  height: 44px;
  text-align: center;
}

.input_champion_list span {
  line-height: 44px;
  color: white;
  font-size: 17px;
}

.input_champion_list li:hover {
  background-color: #37474F61;
}

.action_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 96px;
}

.confirm_button {
  display: flex;
  width: 40%;
  height: 44px;
  border-radius: 22px;
  margin-top: 24px;
  background-color: #455A64;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.confirm_button:hover {
  background-color: #546E7A;
}

.confirm_button span {
  font-size: 18px;
  color: white;
}

.confirm_button_correct {
  background-color: #2BAF2B;
}

.confirm_button_correct:hover {
  background-color: #2BAF2B;
}

.confirm_button_wrong {
  background-color: #E51C23;
}

.confirm_button_wrong:hover {
  background-color: #E51C23;
}

.get_answer_button {
  display: flex;
  width: 40%;
  height: 24px;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.get_answer_button span {
  font-size: 15px;
  color: #9E9E9E;
}

.get_answer_button span:hover {
  color: white;
}

.score_container {
  display: flex;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
}

.score_container span {
  font-size: 18px;
  color: #BABABA;
}

.score_container span.score {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-left: 8px;
  margin-top: 2px;
}
