    /* Halaman */
    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to right, white, palevioletred);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 100vh;
      margin: 0;
      padding: 20px;
      color: #2d3436;
    }

    /* Judul */
    h2 {
      background-color: rgb(91, 51, 51);
      color: white;
      padding: 10px 20px;
      border-radius: 10px;
      box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    }

    /* Warna Button Besar */
    .card { 
      background-color: pink;
      border-radius: 12px;
      padding: 20px;
      width: 320px;
      text-align: center;
      margin: 15px 0;
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    }

    /* Button Kecil */
    input, button {
      padding: 8px;
      margin: 5px;
      border-radius: 8px;
      border: none;
      outline: none;
    }
    button {
      background-color: rgb(91, 51, 51);
      color: white;
      cursor: pointer;
      transition: 0.2s;
    }
    ul {
      list-style-type: none;
      padding: 0;
    }
    li {
      background-color: white;
      margin: 5px 0;
      padding: 8px;
      border-radius: 8px;
      color: rgb(91, 51, 51);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    /* Jam Digital */
    .clock {
      font-size: 2em;
      font-weight: bold;
      background-color: rgb(91, 51, 51);
      padding: 10px 20px;
      border-radius: 10px;
      color: white;
      display: inline-block;
      margin-bottom: 5px;
    }

    /* Quiz */
    .question {
      text-align: left;
    }
    .options button {
      width: 100%;
      margin: 4px 0;
    }
    .result {
      font-weight: bold;
      font-size: 1.2em;
    }