body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

.content {
  flex: 0 1 300px;
}

.container {
  aspect-ratio: 9/16;
  display: flex;
}

.calculator {
  background-color: gainsboro;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 16px;
  padding: 16px;
}

.screen {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.header {
  flex: 1;
  font-size: 24px;
  padding: 8px;
  font-weight: 550;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screen-display {
  flex: 4;
  background-color: aquamarine;
  display: flex;
  justify-content: flex-start;
  font-size: 32px;
  font-weight: 600;
  font-family: 'Courier New', Courier, monospace;
  word-break: break-all;
}

.button-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 2px;
}

.button-row {
  flex:1;
  display: flex;
  gap: 2px;
}

.button {
  flex: 1;
  border-radius: 5px;
  border-color: whitesmoke;
}
