body {
  min-height: 100vh;
  background-color: DarkSlategray;
  font-family: Garamond, serif;
  text-align: Center;
  margin: 0;
  padding: 20px;
 
}
h1 {
  font-size: 2.5em;
  color: black;
  margin-bottom: 15px;
  
}
button {
  background: Navy;
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  color: #fff;
  cursor: pointer;
  padding: 12px 24px;
  font-size: 18px;
  margin-top: 20px;
  transition: transform 0.2s, background 0.3s;
  font-family: Garamond, serif;
  
}
button:hover {
  background: FireBrick;
  transform: scale(1.50);
}
p {
  
  background:IndianRed;
  color: #000;
  font-size: 2em;
  width: 75%;
  max-width: 600px;
  margin: 20px auto;
  padding: 10px;
  border-radius: 5px;
  line-height: 1.5;
  
}
