.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px; /* Adjust the height as needed */
    width: 300px; /* Adjust the width as needed */
    margin: 10px; /* Adjust the margin as needed */
    background-color: rgba(0,0,0, 0.5);
    
  }
  
  .products {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px; /* Adjust the height as needed */
    width: 200px; /* Adjust the width as needed */
    overflow: hidden;
  }
  
  .products img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .box h2 {
    margin-top: 6px; /* Adjust the margin as needed */
    text-align: center;
    color: white;
    text-decoration: none
    
  }

  a {
    text-decoration: none;
  }

  .container {
  top:250px;
  }

  .box p {
    text-align: center;
    font-size: 14px; /* Adjust the font size as needed */
    line-height: 1.5; /* Adjust the line height as needed */
  }

  .prijs h2 {
    color: darkgrey;
    font-size:larger; 
  }
  
  @media only screen and (max-width: 768px) {
  
    .container {
      margin-left: 3.5%;
      width: 94%;
      top: 327px;
      align-items:center;
      height: 200px;
    }
  
    .box{
      width: 94%;
      height: auto;
      margin-left: 0;
      margin-bottom: 0px;
      padding: 10px;
      height: 150px;
    }

    .products {
      height: 70px;
      width: 70px;
      overflow: unset;
    }
    
    .products img {
      position:relative;
      top:16px;
      width:100px;
      height: 100px;
      object-fit: contain;

    }

    .box h2 {
      position:relative;
      top:10px;
      font-size: 1em;
     }
  
    .box p {
      position:relative;
      top:10px;
      font-size: 0.75em;
      line-height: 1;
     }

     .prijs h2 {
      position:relative;
      color: darkgrey;
      font-size:larger; 
      top: -8px;
    }
   
    footer {
    position: absolute;
    top: 880px;
    height: 71px;
    padding: 10px;
  }
  }