body {
    font-family: "Poppins", sans-serif;
    text-align: center;
    background: #f0f8ff;
    margin: 0;
    /* padding: 20px; */
  }

  h2 {
    color: #333;
  }

  .btn-play {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 7px 7px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    /* margin: 10px 0 20px; */
    transition: 0.3s;
  }

  .btn-play:hover {
    background-color: #0056b3;
  }

  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: center;
    /* margin-top: 10px; */
  }

  .image-grid img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    /* border: 4px solid transparent; */
    transition: 0.3s;
  }

  .image-grid img:hover {
    transform: scale(1.05);
    border-color: #007bff;
  }

  .notif {
    margin-top: 20px;
    font-weight: bold;
    font-size: 20px;
  }

  .benar {
    color: green;
  }

  .salah {
    color: red;
  }