.intro{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.col{
    img{
        max-width: 40vw;
        max-height: 30vh;
    }
    width: 50%;
}

#leftlogo{
    display: flex;
    justify-content: center;
}


#shops{
    margin-top: 10vh;
    margin-bottom: 20vh;
    width: 95vw;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10px, 40%));
    justify-content: center;
    justify-self: center;
}

.shop{
    h1{
        text-align: center;
    }
    p{
        font-size: 1.5vw;
        text-align: center;
    }
    height: 30vh;
    background-color: var(--cpactc);
    border-radius: 30px;
    margin: 10px;
    

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


