body {
 
  height: 100vh; /* Full viewport height */
  font-family: Arial, sans-serif;
}

h1 {
  margin-top: 20px;
  text-align: center;
}

input {
    margin: 2px;
    padding: 2px;
}

button {
    margin: 5px;
}

#bodyContainer {
  display: flex;
  justify-content: center; /* Center the flex container horizontally */
  align-items: center; /* Center the flex container vertically */
}

#inputContainer {
  margin: 20px;
  display: flex;
  flex-direction: column;
}
