.decoder {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.decoder_title {
  margin: 2rem 0;
  font-size: 2.5rem;
}

.decoder_input {
  display: block;
  width: 40rem;
  height: 3.3em;
  border-radius: 0.5rem;
}

.decoder_btn {
  display: block;
  width: 12rem;
  height: 4rem;
  margin: 1rem 0;
  font-size: 2rem;
  border-radius: 0.8rem;
  text-align: center;
  line-height: 4rem;
}

*:focus {
  outline: none;
}

a:not([href]) {
  cursor: pointer;
}

.result_box {
  width: 70%;
  min-width: 42rem;
}

.decoder_result > div {
  color: #646363;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  display: flex;
}
/* .decoder_result > div:nth-child(odd) {
  background-color: #f0cfb6;
} */
.decoder_result > div > div {
  flex: 1
}

.decoder_info {
  margin-bottom: 10px;
}

.hide {
  display: none;
}

.bold {
  font-weight: bold;
}

.success {
  color: green;
}

.error {
  color: red;
}
