body {
    text-align: center;
    background: linear-gradient(135deg, orange, red);
    font-family: 'Times New Roman', cursive, sans-serif;
    padding: 50px;
    color: white;
  }
  button {
    font-size: 1.5em;
    background: radial-gradient(circle, #ff7eb3, #ff758c);
    font-family: 'Times New Roman', cursive, sans-serif;
    color: #0056b3;
    border: none;
    padding: 15px 25px;
    margin-top: 20px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    width: 250px;
  }
  button:hover, button:focus, button:active {
    background: radial-gradient(circle, #ff5e62, #ff9966);
    color: yellow;
    transform: scale(1.1);
    cursor: pointer;
  }