@media (min-width: 800px) {
  body {
    width: 800px;
    margin: 0px auto;
    border: 3px solid #d3d3d3;
  }
  .infoDiv {
    width: 600px;
  }
}
body {
  box-sizing: border-box;
}
header {
  padding: 10px 0px;
  text-align: center;
  background: #202020;
  color: #d3d3d3;
}
h2 {
  font-family: 'Rowdies', cursive;
}
p {
  font-family: 'Roboto', sans-serif;
}
.hRule {
  height: 2px;
  border-width: 0;
  color: gray;
  background-color: #d3d3d3;
  width: 10%;
}
.sectionOne {
  background: linear-gradient(15deg, #f2f2f2 45%, #202020 calc(45% + 2px));
}
.bodyDiv {
  text-align: center;
}
.sectionTwo {
  background: #f2f2f2;
}
.inputDiv {
  text-align: center;
}
input {
  width: 70%;
  height: 40px;
  border: 2px solid #cecece;
  box-shadow: 1px 1px 14px -1px #7a7a7a;
  border-radius: 5px;
  padding: 2px;
}
input::placeholder {
  padding-left: 15px;
  color: #202020;
}
button {
  background: #202020;
  height: 40px;
  padding: 0px 30px;
  box-shadow: 1px 1px 14px -1px #7a7a7a;
  border: 0px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
}
button:hover {
  animation-name: btnHover;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  box-shadow: 1px 1px 14px -1px #036881;
}
@keyframes btnHover {
  0% {
    background: #202020;
  }
  100% {
    background: #048ec5;
  }
}
.listDiv {
  margin-top: 30px;
  padding: 30px 0px;
  margin-left: -25px;
}
.runInput {
  display: flex;
  justify-content: space-around;
}
.runInputs {
  border: 1px solid #cecece;
  padding: 10px 15px;
  list-style: none;
  box-shadow: 1px 1px 4px -1px #b1b1b1;
}
.sectionThree {
  background: #202020;
  color: #d3d3d3;
  padding: 30px;
}
.displays {
  display: flex;
  justify-content: space-between;
}
.displays span {
  font-weight: bold;
  font-size: 20px;
}
.dispLine {
  width: 90%;
  background: #d3d3d3;
}
footer {
  background: black;
  padding: 10px 0px;
  color: #d3d3d3;
  text-align: center;
}
#errDisp {
  color: red;
}
.fas {
  color: #d3d3d3;
  font-size: 28px;
  cursor: pointer;
}
.faIcon {
  float: right;
  padding: 20px 30px 0px 0px;
}
.logoDiv {
  margin-left: 40px;
}
.infoDiv {
  padding: 30px;
  margin: 50px;
  background: rgba(0, 0, 0, 0.95);
  color: #d3d3d3;
  border-radius: 20px;
  position: fixed;
  margin-top: 0px;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-name: shower;
}
@keyframes shower {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hider {
  display: none;
}
