.catalogue{
    display: flex;
    width: 90vw;
    height: 81vh;
    flex-wrap: wrap;
    margin-top: 20px;
}
.split{
    width:250px;
    height: 380px;
    background-color: rgb(241, 233, 233);
    display:flex;
    margin-right: 30px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;

}
.split img{
    width: 150px;
}
.split a{
    color: black;
}
.split div{
    height: 30% ;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
@media screen and (max-width:700px){
    .catalogue{
        flex-direction: column;
        flex-wrap: nowrap;
       min-height: 150vh;
       align-items: center;
    }
    .split{
        width: 70vw;
        height: 60vh;
    }  
 

}