hr {
    margin: 30px 0;
    border: none;
    border-top: 2px solid tomato;
  }

  footer {
    color: #777;
    font-size: 14px;
  }
  body {
    font-family: Arial, sans-serif;
   font-size:24px;
    background-color: #eeeeee;
  }

  .grid {
    width: 60%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  h1 {
    color: tomato;
    text-align: center;
  }
 #quiz {
    text-align: center;
  }

  .buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin-top: 20px;
  }



  button {
    border: 3px solid tomato;
    background-color: transparent;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    height: auto;
  }
  img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
  }