* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: #edf2f8;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  border-radius: 15px;
}

h1 {
  text-align: center;
}

.button {
  background-color: #4caf50; /* Green */
  border: none;
  width: 295px;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 15px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
.button1 {
  background-color: white;
  color: black;
  border: 2px solid #4caf50;
}
.button1:hover {
  background-color: #4caf50;
  color: white;
}
