* {
  font-family: 'Times New Roman', Times, serif;
  box-sizing: border-box;
}

form {
  max-width: 100%;
  margin: auto;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.buttonArea {
  display: flex;
  align-items: center;
  justify-content: center;
}

button {
  width: 20%;
  padding: 5px;
  margin-top: 15px;
  background-color: #28a745;
  font-size: 18px;
  font-weight: bold;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #218838;
}

@media screen and (max-width: 576px) {
  form {
    display: block;
  }

  input {
    width: 70%;
  }

  h1 {
    font-size: 1rem;
  }

  h3,
  h4,
  label,
  input,
  option {
    font-size: 0.7rem;
  }

  div {
    font-size: 0.5rem;
  }

  button {
    width: 50%;
    font-size: 0.3rem;
  }
}
