*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(45deg,#656565, #fff);
    background-attachment: fixed;
    min-height: 100vh;
}
ul{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}
a{
    text-decoration: none;
}
.container{
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    padding: 20px;
    display: block;
    justify-content: center;
    align-items: CENTER;
}
.carte{
    width: 350px; */
    max-width: 400px;
    color: azure;
    text-align: center;
    padding: 50px 30 px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    margin-bottom: 50px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 10px auto;
}
.modele{
    height: 250px;
    max-width: 100%;
    max-height: 100%;
}
.details{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}
.logo{
    width: 50px;
    letter-spacing: 2px;
}
.logo p{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #656565;
}
.details p{
    color: snow;
    text-align: center;
    margin-top: 20px;
}
.details h1{
    color: #252728;
}
.C&M{
    color: rgb(183, 217, 241);
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 20px;

}
.visio h1{
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 25px;
    border-radius: 10px;
    color: black;
}
@media screen and (min-width: 768px){
    .produit img{
        max-width: 120px;
    }
    .produit h2 {
        font-size: 14px;
    }
}
.info{
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 999;
    transform: translateX(0);
    transition: font-weight 0.5s;
}
.info:hover{
    font-weight: bold;
}
@media  screen and (max-width: 1024px) {
    ul{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width: 768px) {
    ul{
        grid-template-columns: 1fr;
    }
}