.gcs-calculator {
  
}

.gcs-header {
  display: block;
  text-align: center;
  color: #152426;
}

.gcs-header .summary {
  font-size: 20px;
}

.gcs-body {
  display: flex;
  flex-direction: column;
}

.gcs-body .section {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.gcs-body .gcs-selection {
  display:flex;
  flex-direction: column;
  width: 400px;
}

.gcs-body .gcs-selection h2 {
  justify-content: start;
}

.gcs-body .number-display p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: bold;
}

.gcs-body .button {
  height: 40px;
  font-size: 20px;
  background-color: #152426;
  color: rgba(239, 241, 242, 1);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 400px;
  height: 70px;
  margin-top: auto;
  margin-bottom: auto;
}

.gcs-body .button:hover {
  background-color: #1e3537;
}