body {
  margin: 0;
  padding: 0;
  background-color: orange;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  height: 100%;
  width: 800px;
  background-color: white;
  border-radius: 10px;
}

form {
  height: 90%;

  font-size: 20px;
  padding: 15px;
}

input {
  margin: 7px;
}

button {
  height: 35px;
  width: 98%;
  border-radius: 5px;
  border: 2px solid grey;
  font-size: 15px;
  margin: 20px 8px 10px 10px;
  background-color: rgb(23, 96, 221);
  border: none;
}
h1 {
  text-align: center;
}

.result {
  margin-top: 300px;

  height: 170px;
  width: 300px;
  text-align: center;
  border-radius: 10px;
  background-color: white;
  color: black;
}
