@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap');
#body {
  font-family: 'merriweather', serif;
  font-size: 48px;
}
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top left, #0A2A52 5%, #111111 60%);
  font-family: 'Merriweather', serif;
  background: radial-gradient(
  circle at top left,
  #00214a 3%,
  #090b14 40%,
  #111111 100%
);
}
.quote-box h1 {
  font-family: 'merriweather', serif;
  font-size: 30px;
  color: #069794;
  text-align: center;
  margin: 0 0 90px 0;
}
#quote {
  font-family: 'merriweather', serif;
  font-size: 18px;
  text-align: center;
  margin-top: 60px;
  color: #7da6e8;
  line-height: 1.8;
   text-shadow: 0 0 8px rgba(224, 251, 252, 0.3);
}
.box-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #10192e;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  border: 1px solid #a8b2f8;
  padding: 50px 30px;
  height: 200px;
  width: 525px;
  transition: 0.3s ease;
}
.box-contents:hover {
  transform: scale(1.05) translate(-3px);
}
#new-quote {
  background: linear-gradient(to right, #3A506B, #5BC0BE);
  color: #0B132B;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
  border: none;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
  border: 2px solid #F2C1A3;
  border-color: #a3a4f2;
  padding: 10px 20px;
}
#new-quote:hover {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(to right, #5BC0BE, #3A506B);
  transform: scale(1.05);
}