html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  background: linear-gradient(119.36deg, #a20074 0%, #8f18b9 100%), #8f18b9;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
}

#content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

h1 {
  font-weight: 100;
  font-size: max(min(72px, 7vw), 32px);
  text-align: center;
}

#middle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 1000px;
  max-width: 100vw;
}

.inputBox {
  display: flex;
  flex-direction: column;
  width: min(350px, calc(50vw - 32px));
}

.inputBox label {
  font-size: max(min(36px, 5vw), 24px);
  font-weight: 300;
}

.inputBox input {
  border: none;
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
  background: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: max(min(96px, 9vw), 32px);
  width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input,
button {
  outline: none;
}

input:focus {
  color: #ffffff;
  border-bottom: 4px solid #ffffff;
}

.button {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10000px;
  color: #970e9d;
  font-weight: 300;
  font-size: max(min(36px, 5.5vw), 24px);
  border: 3px solid #ffffff;
  cursor: pointer;
  padding: 16px 64px;
  margin: 1.34em 0;
}

.button:hover {
  background: #ffffff;
}

#bottom {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 1000px;
  max-width: 100vw;
}

.small label {
  font-size: max(min(24px, 4.5vw), 18px);
  transition: all 200ms ease;
}

.small input {
  font-size: max(min(36px, 5.5vw), 18px) !important;
  transition: all 200ms ease;
  width: 100%;
}

.small {
  width: min(112px, 100%);
  transition: all 200ms ease;
  margin: 0 12px;
}

.hidden {
  opacity: 0 !important;
}

.noDisplay {
  display: none;
}

#number {
  font-size: min(64px, 12vw);
  transition: all 200ms ease;
  opacity: 0.5;
  margin:0;
}

.largeNumber {
  font-size: min(128px, 20vw) !important;
  opacity: 1 !important;
  transition: all 200ms ease;
}

@media only screen and (max-width: 600px) {
  .button {
    padding: 12px 24px;
  }
}