main {
  display: flex;
  justify-content: center;
  align-items: center;
}

div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
div h3 {
  margin-bottom: 40px;
}
div form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px 100px;
  padding-bottom: 40px;
  width: 80%;
  border: 1px solid rgb(224, 224, 224);
  box-shadow: 0px 0px 10px 0px rgb(203, 203, 203);
  border-radius: 10px;
  text-align: center;
  background-color: white;
}
div form:hover {
  box-shadow: 0px 0px 10px 0px #a3cae8;
}
div form textarea {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 10px;
  margin-bottom: 20px;
  padding-bottom: 40px;
}
div form #inputWord,
div form #inputMorse {
  text-align: center;
  height: 50px;
  width: 90%;
  border: 1px solid lightgrey;
  overflow: auto;
}
div form .button-8 {
  background-color: #e1ecf4;
  border-radius: 3px;
  border: 1px solid #7aa7c7;
  box-shadow: rgba(255, 255, 255, 0.7) 0 1px 0 0 inset;
  box-sizing: border-box;
  color: #39739d;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", "Liberation Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.15385;
  margin: 0;
  outline: none;
  padding: 8px 0.8em;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
}
div form .button-8:hover,
div form .button-8:focus {
  background-color: #b3d3ea;
  color: #2c5777;
}
div form .button-8:focus {
  box-shadow: 0 0 0 4px rgba(0, 149, 255, 0.15);
}
div form .button-8:active {
  background-color: #a0c7e4;
  box-shadow: none;
  color: #2c5777;
}
div #result-morse,
div #result-text {
  border: 1px solid rgb(224, 224, 224);
  box-shadow: 0px 0px 10px 0px rgb(203, 203, 203);
  width: 80%;
  padding: 10px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: white;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 10px;
}

@media only screen and (max-width: 390px) {
  main {
    flex-direction: column;
  }
  main #result-morse,
main #result-text {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 391px) and (max-width: 800px) {
  main {
    flex-direction: row;
  }
}
@media only screen and (min-width: 801px) and (max-width: 1025px) {
  main {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1026px) {
  main {
    flex-direction: row;
  }
}
h1 {
  margin-bottom: 100px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 50px;
  text-align: center;
}

footer {
  margin-top: auto;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: lightgoldenrodyellow;
  height: 100vh;
  margin: 0;
}

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