h1 {color:blue;}
h2 {color:green}
body {padding-bottom: 20vh}
  .options {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    button {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      border: none;
      border-radius: 6px;
      background-color: #333;
      color: #fff;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    button:hover {
      background-color: #555;
    }

    #response {
      margin-top: 1.5rem;
      font-style: italic;
      color: #333;
      min-height: 1.5rem;
    }
  