h1 {
  text-align: center;
}

body {
  background-color: #282828;
  font-family: Helvetica;
  font-size: 125%;
  color: #FFFFFF;
}

table {
  margin-left: auto;
  margin-right: auto;
}

td {
  width: 175px;
}

input {
  background-color: #282828;
  font-family: Helvetica;
  color: #FFFFFF;
  width: 80px;
  text-align: left;
  font-size: 100%;
  border: none;
  border-bottom: 1px solid #666;
  outline: none;
  padding: 2px 0;
}

input:focus {
  border-bottom-color: #22D900;
}

.buttonContainer {
  width: 250px;
  display: grid;
  grid-template-columns: 125px;
  margin: 0 auto;
  justify-content: space-evenly;
  justify-items: center;
  align-content: space-evenly;
  align-items: center;
}

.rightButton {
  width: 110px;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  border: 3px solid #22D900;
  border-radius: 5px;
  color: black;
  background-color: #22D900;
  font-weight: bold;
  font-size: 100%;
  cursor: pointer;
}

.rightButton:hover {
  background-color: #1bb600;
  border-color: #1bb600;
}

.rightButton:active {
  background-color: #159400;
  border-color: #159400;
}

.resultsContainer {
  width: 250px;
  margin: 0 auto;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 150px 100px;
  padding: 0;
}

.resultsLabel {
  width: 150px;
  text-align: left;
  margin-top: 14px;
}

.resultsData {
  width: 100px;
  text-align: right;
  margin-top: 14px;
}
