@import url('https://fonts.googleapis.com/css2?family=Varela&display=swap');

.container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 500px;
  font-family: 'Varela', sans-serif;
  background-color: #fbf9ff;
  color: #052c27;
  padding-bottom: 30px;
  border-radius: 3px;
  border: 2px solid black;
}
.input-label {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}
input {
  width: 220px;
  height: 30px;
  margin: 5px;
  border: 2px solid black;
  border-radius: 5px;
  padding: 6px;
  font-size: 13px;
  font-weight: bold;
}
label {
  font-weight: bold;
  font-size: 19px;
}
button {
  border: 2px solid black;
  height: 30px;
  width: 60px;
  border-radius: 6px;
}
.display-result {
  border: 2px solid black;
  margin-top: 19px;
  height: 40px;
  width: 200px;
  padding: 15px;
  font-size: 15px;
  font-weight: bold;
}
