body {
    text-align: center;
    background-color: lightblue;
    font-family: 'Times New Roman', cursive, sans-serif;
    font-size: 3em;
    }
    button {
      font-size: 1.5em;
      background: radial-gradient(circle, #ff7eb3, #ff758c);
      color: blue;
      border: none;
      padding: 15px 30px;
      margin-top: 20px;
      border-radius: 25px;
      box-shadow: 5px 5px 10px rgba(0,0,0, 0.2);
      transition: all 0.3s ease-in-out;
    }
    button:hover, button:focus, button:active {
      background: radial-gradient(circle, #ff5e62, #ff9966);
      color: yellow;
      transform: scale(1.1);
      cursor: pointer;
    }