body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  margin: 0px 100px;
  background-color: #fff;
  text-align: center;
}

.container {
  background: white;
  padding: 30px;
  width: 100%;
}

.button-container {
  display: flex;
  flex-direction: row;
  gap: 50px; /* Space between buttons */
  margin-top: 20px;
  justify-content: center;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid #343776;
  border-radius: 100px;
  transition: background-color 0.3s;
  background-color: #fff;
  height: 50px;
  width: 250px;
  color: #343776;
}

button:hover {
  background-color: #343776;
  color: white;
}
