
    body {
      background-image: url('img/Autoworkshop01.jpg');
      font-family: Arial, sans-serif;
      margin: 0;
      border: 0;
      padding: 0;
      margin-bottom: 0;
    }
    header, footer {
      text-align: center;
      padding: 0;
    }
    header h1 {
      font-size: 2.5em;
      color: #1e3a8a;
      margin-bottom: 0;
    }
    header p {
      
      font-size: 1.1em;
    }

    @media (min-width: 768px) {
      .cards {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    body h1 {
      font-size: 4em;
      color: #1e3a8a;
      margin-bottom: 0;    
    }  

    img {
      width: 100%;
      max-width: 100%;
      height:auto;
    }

    ul {
    list-style-type: square;
    list-style-position: outside;
    padding-left: 200px;
    }   
  

  .card {
    background-color:navy;
    color:white;
    border-radius: 20px; /* Round the corners */
    padding: 10px;
    text-align: center;
    /*box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
    /* margin: 25%; */
    width: 1200px; /* Must have a defined width */
    margin: 10px auto; /* top/bottom margin to 10, left/right to auto */
    /* for margin first value, 10px means before & after the class which is box here */
    place-items: center; /* Centers items both horizontally and vertically */
    /* place-items: center also fixed bullet point issue, now next to item */
  }

    /*
    .card {
      background-color: lightgoldenrodyellow;
      border-radius: 10px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin: 25%;
    }
      */
    .card h1 {
      font-size: 4em;
      color: white;
      margin-bottom: 0;    
    }  

    .card h2 {
      font-size: 2em;
      margin-bottom: 0;
    }

    .h4::before {
    
  }


    .card p {
      color: #4b5563;
    }

    footer {
      color: #f3f8f6;
      font-size: 0.875rem;
      padding-top: 20px;
    }
  