* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  background-color: rgb(253, 247, 239);
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto 0 auto;
}
body header h1 {
  color: rgb(128, 77, 143);
  text-align: center;
  padding: 1rem;
  border-bottom: 1px solid rgb(128, 77, 143);
}
body header div {
  width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 767px) {
  body header div {
    flex-direction: column;
  }
}
body header div section {
  padding: 0.5rem;
  border: 1px dotted grey;
  border-radius: 0.25rem;
  background-color: rgb(183, 233, 252);
  box-shadow: -5px 5px 10px skyblue;
}
body main #rechner {
  max-width: 80%;
  margin: 0 auto 1rem auto;
  border: 1px dotted rgb(128, 77, 143);
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
}
body main #rechner h3 {
  font-size: 1.75rem;
  text-align: center;
  color: rgb(128, 77, 143);
  margin: 1rem;
}
body main #rechner > label {
  text-align: center;
}
body main #rechner > input {
  margin: 0 auto 1rem auto;
  min-width: 40%;
  font-size: 1.25rem;
  border-radius: 0.25rem;
}
@media (max-width: 767px) {
  body main #rechner > input {
    max-width: 100%;
  }
}
body main #rechner > input:hover {
  background-color: rgba(87, 223, 87, 0.25);
}
body main #rechner > input:focus {
  background-color: rgba(87, 223, 87, 0.25);
  border: none;
  outline: solid skyblue;
}
body main #rechner div {
  margin: 0 auto;
  text-align: center;
}
body main #rechner #submit {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: rgb(253, 247, 239);
  background-color: rgb(128, 77, 143);
  margin: 0.5rem auto;
}
body main #rechner #submit:hover {
  color: rgb(128, 77, 143);
  background-color: skyblue;
}
body main section {
  width: 80%;
  margin: 3rem auto 1rem auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  body main section {
    flex-direction: column;
    gap: 1rem;
  }
}
body main section #res {
  width: 40%;
  text-align: center;
  border: 1px dotted rgb(128, 77, 143);
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: rgba(128, 77, 143, 0.1);
  box-shadow: -2px 2px 5px rgb(128, 77, 143);
  transform: scale(0);
  transition: transform 0.75s ease-in-out;
}
@media (max-width: 767px) {
  body main section #res {
    width: 60%;
  }
}
body main section #res p {
  color: rgb(128, 77, 143);
}
body main section #res #result {
  font-size: 2.5rem;
}
body main section #res #status {
  font-size: 1.25rem;
}
body main section div:last-of-type {
  height: 250px;
  width: 60%;
  position: relative;
  left: 0;
}
@media (max-width: 767px) {
  body main section div:last-of-type {
    width: 100%;
  }
}
body main section table {
  width: 100%;
  height: 200px;
  border-collapse: collapse;
  position: absolute;
  bottom: 0;
  margin-bottom: 1rem;
  background-color: rgba(128, 77, 143, 0.1);
  box-shadow: -2px 2px 5px rgb(128, 77, 143);
}
body main section table th,
body main section table td {
  border: 1px solid rgb(128, 77, 143);
  text-align: center;
  color: rgb(128, 77, 143);
}
body main section table:nth-of-type(1), body main section table:nth-of-type(2), body main section table:nth-of-type(3) {
  transform: scaleX(0);
  transition: transform 0.75s ease-in-out;
}
body main section table caption {
  color: rgb(128, 77, 143);
  font-size: 1.5rem;
}
body main #diff {
  font-size: 1.2rem;
  font-weight: normal;
  color: rgb(128, 77, 143);
  background-color: rgb(183, 233, 252);
  width: max-content;
  margin: 1rem auto 2rem auto;
  padding: 0.25rem 0.5rem;
  border: 1px dotted rgb(128, 77, 143);
  border-radius: 0.25rem;
  transform: scaleX(0);
}
body main #backBTN {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: rgb(128, 77, 143);
  background-color: skyblue;
  display: block;
  margin: 0 auto 1rem auto;
  transform: scaleX(0);
  transition: transform 0.5s;
}
body main #backBTN:hover {
  color: rgb(253, 247, 239);
  background-color: rgb(128, 77, 143);
}
body footer {
  background-color: skyblue;
  line-height: 2rem;
  padding-left: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  body footer {
    position: static;
  }
}

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