html {
  font-size: 62.5%;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.63) 23%, rgb(14, 14, 14) 100%);
  color: #ffffff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100vh;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: auto;
  margin: 1rem auto auto;
  padding: 2rem;
  text-align: left;
  gap: 2rem;
}
@media screen and (min-width: 993px) {
  .container {
    flex-direction: row;
    gap: 10rem;
    max-width: 120rem;
    margin: 7rem auto auto;
  }
}

.box-titulo {
  width: 100%;
}
@media screen and (min-width: 993px) {
  .box-titulo {
    width: 30%;
  }
}
.box-titulo h1 {
  font-family: "Roboto Mono", serif;
  font-size: 4rem;
  line-height: 4.4rem;
  margin-bottom: 1rem;
}
.box-titulo h1 .highlight {
  color: #A2EC00;
}
.box-titulo p {
  font-family: "Open Sans", serif;
  font-size: 1.6rem;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.box-traductor {
  width: 100%;
}
@media screen and (min-width: 993px) {
  .box-traductor {
    width: 70%;
  }
}
.box-traductor .translator {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: auto;
}
.box-traductor .translator .input-section,
.box-traductor .translator .output-section {
  background: #333;
  padding: 2rem;
  border-radius: 0.3125rem;
}
.box-traductor .translator textarea {
  font-family: "Open Sans", serif;
  width: 100%;
  height: 10rem;
  margin-bottom: 1rem;
  border: 0.1rem solid #555;
  border-radius: 0.3125rem;
  padding: 1rem;
  font-size: 1.6rem;
  resize: none;
  color: #ffffff;
  background: #444;
}
.box-traductor .translator textarea::-moz-placeholder {
  color: #999;
}
.box-traductor .translator textarea::placeholder {
  color: #999;
}
.box-traductor .translator button {
  font-family: "Roboto Mono", serif;
  background: #A2EC00;
  color: #000;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 0.3125rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.box-traductor .translator button:hover {
  background: #84c100;
}
.box-traductor .translator .output-section .morse-output {
  width: 100%;
  min-height: 10rem;
  margin-bottom: 1rem;
  border: 0.1rem solid #555;
  border-radius: 0.3125rem;
  padding: 1rem;
  font-size: 1.6rem;
  background: #444;
  color: #ffffff;
  font-family: "Open Sans", serif;
  line-height: 2.4rem;
}
.box-traductor .translator .output-section .morse-char {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem;
  border-radius: 0.3rem;
  transition: background-color 0.3s ease;
  min-width: 1.2rem;
  text-align: center;
}
.box-traductor .translator .output-section .morse-char.highlight {
  background-color: #A2EC00;
  color: #000;
}
.box-traductor .translator .output-section .buttons {
  display: flex;
  justify-content: space-between;
}
.box-traductor .translator .output-section .buttons button {
  flex: 1;
  margin: 0 0.5rem;
}/*# sourceMappingURL=style.css.map */