* {
    margin: 0;
    padding: 0;
}

.colors-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-colors{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
   
}
.color{
    display: grid;
    margin: 5px;
}

.color img{
    display: grid;
    width:100%;
}

@media (max-width:768px){
    .content-colors{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
       
    }
}