html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

b {
  font-weight: 900;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  text-decoration: none;
  transition: all;
  transition-timing-function: ease-in-out;
}

body {
  -webkit-animation: fadeInAnimation ease 1s;
          animation: fadeInAnimation ease 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  margin: 0;
  padding: 0;
  height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
  line-height: 1.3;
  background-color: rgb(225, 225, 225);
  color: rgb(35, 35, 35);
  font-family: Arial, Helvetica, sans-serif;
}

main {
  margin: 2.5%;
}

#output {
  font-family: monospace;
  color: black;
}

footer {
  position: absolute;
  bottom: 2.5%;
  font-size: small;
}/*# sourceMappingURL=style.css.map */