body {
  font-family: 'Aldrich', sans-serif;
  background-color: #818181;
}

#calculator {
  height: 510px;
  width: 400px;
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border: 2px solid #908b85;
  border-radius: 20px;
  box-shadow: 7px 10px 34px 1px rgba(0, 0, 0, 0.68), inset -1px -6px 12px 0.1px #89847e;
}

#title {
  padding-top: 15px;
  padding-bottom: 10px;
}
#title >h1 {
font-family: 'Patrick Hand';
font-size: 30px;
}

#displaybox {
  width: 350px;
  height: 55px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid gray;
  border-radius: 6px;
}

#mainOutput {
  margin-right: 10px;
  font-size: 28px;
}

#steps {
  position: relative;
  height: 10px;
  bottom: 17px;
  margin-right: 14px;
  color: #8b8b7b;
  font-size: 12px;
}

#buttons {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  display: inline-block;
  width: 380px;
  height: auto;
  margin-top: 15px;
  margin-left: 24.5px;
}

button {
  border-radius: 8px;
  border: none;
  background-color: #3a3a3a;
  margin: 0 4px 10px 8px;
  height: 50px;
  width: 71px;
  box-shadow: 0px 3px 0px 0px #000000;

}

button:active {
  transform: translate(0px, 3px);
  box-shadow: none;
}

.row {
  margin-top: 20px
}

#topAdjust {
  margin-top: -52px;
}


#total {
  width: 159px;
}

.red {
  font-size: 14px;
  background-color:  #a72d45;
  box-shadow: 0px 3px 0px 0px #671c2a;
}

.blue {
  font-size: 14px;
  background-color: #557E95;
  box-shadow: 0px 3px 0px 0px #3f5e6f;
}

.orange {
  font-size: 14px;
  background-color: #ff8c00;
  color: black;
  box-shadow: 0px 3px 0px 0px #bf6900;
}

#footer {
  font-family: 'Patrick Hand';
  position: relative;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  width: 100%;
  height: 40px;
}

button,
button:hover,
button:active,
button:visited {
  text-decoration: none !important;
  outline: none !important;
}

a,
a:hover,
a:active,
a:visited {
  color: #922031;
  text-decoration: none !important;
  outline: none !important;
}
