body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    padding: 20px;
    text-align: center;
  }
  h1 {
    font-size: 48px;
    margin-top: 0;
    text-shadow: 2px 2px #ddd;
    color: #4CAF50;
  }
  h3 {
    font-size: 22px;
    margin-top: 0;
    text-shadow: 2px 2px #ddd;
    color: #4CAF50;
  }
  p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
  }
  .button-container {
    display: flex;
    justify-content: center;
  }
  button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    margin: 10px;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-in-out;
  }
  button:hover {
    background-color: #3e8e41;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  }
  a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.2s ease-in-out;
  }
  a:hover {
    text-decoration: underline;
    color: #3e8e41;
  }