* {
  margin: 0;
}

html {
  background-color: #0F0E14;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  font-size: 18px;
  overflow: hidden;
}

@media (min-width: 375px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 425px) {
  html {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 30px;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 36px;
  }
}
@media (min-width: 2560px) {
  html {
    font-size: 52px;
  }
}
.container {
  display: flex;
  flex-direction: column;
  color: #DFDEE1;
  background-color: #24232B;
  padding: 0.6rem;
}

.header {
  color: #DFDEE1;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.header h4 {
  margin-bottom: 1rem;
}
.header .inputContainer {
  background-color: #24232B;
  margin-bottom: 1rem;
  padding: 0.5rem;
}
.header .inputContainer input {
  font-size: 1.1rem;
  border: none;
  background-color: #24232B;
  color: #DFDEE1;
}
.header .inputContainer img {
  width: 1.2rem;
}
.header .inputContainer img:hover {
  cursor: pointer;
}

.containerBody .charactInfo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}
.containerBody .charactInfo .textLg {
  color: #A4FFAF;
}

.generalText {
  font-size: 0.8rem;
  display: inline-block;
}

.textLg {
  font-size: 1.2rem;
}

.textSm {
  font-size: 0.7rem;
}

.widthDiv {
  width: 100%;
}

.inactiveFontColor {
  color: #56555D;
}

.checkboxItem label {
  margin-left: 0.2rem;
}

.containerBody div {
  margin-bottom: 0.2rem;
}

.strengthDiv {
  margin-top: 0.4rem;
  background-color: #18181F;
  padding: 0.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: baseline;
}
.strengthDiv .items {
  display: flex;
}
.strengthDiv .item {
  height: 0.7rem;
  width: 0.3rem;
  border: 0.05rem #fff solid;
  display: inline-block;
  box-sizing: border-box;
  margin-left: 0.2rem;
  margin-bottom: 0;
}

.veryEasy {
  background-color: red;
}

.easy {
  background-color: rgb(255, 77, 0);
}

.medium {
  background-color: yellow;
}

.hard {
  background-color: green;
}

.btnLg {
  margin-top: 0.5rem;
  background-color: #A4FFAF;
  padding: 0.5rem;
  font-size: 0.6rem;
  border: none;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.btnLg .arrow {
  max-width: 0.5rem;
  margin-left: 0.2rem;
}

.alert {
  background-color: #18181F;
  color: #DFDEE1;
  padding: 10px;
  margin: 0 auto;
  position: fixed;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.5s;
  display: grid;
  grid-template-columns: repeat(5, 2.2rem);
  grid-template-rows: repeat(3, 2.2rem);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.alert .alertHeader {
  grid-area: 1/5/2/6;
}
.alert .alertBody {
  grid-area: 2/2/3/5;
}

.alert.show {
  opacity: 1;
  top: 50%;
}

/*# sourceMappingURL=style.css.map */
