.product {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: white;
    border-bottom: solid 1vh #a79aff;
    margin: 2vw;
    padding: 2vh;
    border-radius: 2vw;
  }

  .product img {
    max-width: 20%;
    height: auto;
    margin-bottom: 2vh;
  }

  .producttitel {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2vh;
  }

  .totaal {
    background-color: whitesmoke;
    border-radius: 2vw;
    border: solid 0.2vw #a79aff;
    margin: 2vw;
    padding: 2vw;
    align-items: center;
  }

  .adres {
    border-bottom: #a79aff solid 1vh;
    margin-bottom: 2vh;
    padding-bottom: 2vh;
  }

  .optel {
    border-bottom: #a79aff solid 1vh;
    margin-bottom: 2vh;
    padding-bottom: 2vh;
  }

  .ttotaal {
    font-size: 2rem;
    margin-bottom: 2vh;
  }

  .ttotaal2 {
    font-size: 1.5rem;
  }

  .optellen {
    font-size: 1.5rem;
  }

  .titel {
    text-align: center;
    font-size: 2rem;
    margin-top: 2vh;
  }

  .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }


  @media screen and (max-width: 600px) {
      .container {
          display: block;
          flex-direction: row;
          flex-wrap: nowrap;
      }

      .producten {
        width: 100vws;
      }
  }