* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: linear-gradient(to right, #89f7fe, #66a6ff);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 700px;
    text-align: center;
  }
  
  h1 {
    margin-bottom: 20px;
    color: #333;
  }
  
  .timer {
    font-size: 18px;
    margin-bottom: 15px;
    color: #444;
  }
  
  #paragraph {
    background: #f3f3f3;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: left;
  }
  
  textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #aaa;
    margin-bottom: 15px;
    resize: none;
  }
  
  button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background-color: #00aaff;
    color: white;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #007acc;
  }
  
  .result {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
  }

  .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
  }
  