@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Protest+Strike&display=swap");
body {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
}

ol {
  margin-bottom: 0;
}

h1 {
  margin: 20px 0 5px 0;
}

h2 {
  margin: 10px 0;
}

.font-green {
  color: #71aa61;
  font-weight: bold;
}

.font-yellow {
  color: #c6b451;
  font-weight: bold;
}

.font-gray {
  color: rgb(173, 173, 173);
  font-weight: bold;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.line {
  width: 500px;
  height: 2px;
  background-color: lightgray;
}

.instruction {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 1rem;
}

.example {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 499px) {
  .example {
    flex-wrap: wrap;
    width: 70vw;
    height: auto;
  }
}

@media screen and (max-width: 499px) {
  .guide {
    font-size: 60%;
  }
}

.green,
.normal,
.yellow {
  width: 54px;
  height: 54px;
  font-size: 40px;
  text-align: center;
  border-radius: 5px;
  outline: none;
  color: white;
  font-weight: bold;
}
@media screen and (max-width: 499px) {
  .green,
  .normal,
  .yellow {
    width: 40px;
    height: 40px;
    font-size: 25px;
  }
}

.green {
  background-color: #71aa61;
  border: 2px solid #71aa61;
}

.yellow {
  background-color: #c6b451;
  border: 2px solid #c6b451;
}

.normal {
  background-color: lightgrey;
  border: 2px solid lightgrey;
}

.ex__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  font-size: 0.9rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  background-color: #9d69c7;
  color: #fff;
}
@media screen and (max-width: 499px) {
  .ex__btn {
    width: 45px;
    height: 45px;
    font-size: 0.5rem;
  }
}

.wordle_game {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 1rem;
}

.input_container {
  display: flex;
  gap: 10px;
}

input {
  width: 50px;
  height: 50px;
  font-size: 40px;
  text-align: center;
  border-radius: 5px;
  outline: none;
  border: 2px solid lightgray;
}
@media screen and (max-width: 499px) {
  input {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

.submit_btn {
  width: 55px;
  height: 55px;
  font-size: 0.8rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  background-color: #9d69c7;
  color: #fff;
  cursor: pointer;
}
.submit_btn:hover {
  background-color: #7a539b;
}
@media screen and (max-width: 499px) {
  .submit_btn {
    width: 45.5px;
    height: 45.5px;
    font-size: 0.6rem;
  }
}

.hidden {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 5px;
  visibility: hidden;
}
@media screen and (max-width: 499px) {
  .hidden {
    width: 40px;
    height: 40px;
  }
}

.btn__wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn {
  position: relative;
  width: 15vh;
  height: 4vh;
  background: linear-gradient(0deg, #616161 0%, #8a8a8a 100%);
  line-height: 4vh;
  padding: 0;
  margin: 1vh 0;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn:before, .btn:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #6b6b6b;
  transition: all 0.4s ease;
}
.btn:before {
  height: 0%;
  width: 2px;
}
.btn:after {
  width: 0%;
  height: 2px;
}
.btn:hover {
  background: transparent;
  box-shadow: none;
}
.btn:hover:before {
  height: 100%;
}
.btn:hover:after {
  width: 100%;
}
.btn span:hover {
  font-weight: 500;
  color: #6b6b6b;
}
.btn span:before, .btn span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #6b6b6b;
  transition: all 0.7s ease;
}
.btn span:before {
  width: 2px;
  height: 0%;
}
.btn span:after {
  width: 0%;
  height: 2px;
}
.btn span:hover:before {
  height: 100%;
}
.btn span:hover:after {
  width: 100%;
}/*# sourceMappingURL=style.css.map */