@media (min-width: 40em) {

    header {
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    nav ul {
        display: flex;
    }

    nav a:hover,
    nav a:focus-visible {
    color:  oklch(0.20 0.02 260);
    background-color: var(--secundair);
    transition: background-color .2s ease-in-out;
}
    
    .intro{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2em;
        img {
         order: 1;
        }
    }

    }

    .vinden {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center; 
    }
    
    .cards {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    
        li{
        flex: 0 1 calc(50% - 1rem);
        }
    }

  