* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}

.container {
  text-align: center;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: #333;
}

#quote {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: #555;
  min-height: 6.25rem;
  padding: 1.25rem;
  border: 0.0625rem solid #ddd;
  border-radius: 0.25rem;
  background: #fafafa;
}

button {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0056b3;
}
