*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #e4e2e2;
    width: 100%;
    height: auto;
    font-family: sans-serif;

}
.shops{
    display: flex;
    flex-direction: row;
     margin: 6rem;
     gap:4em ;
     
}
.wings{
    display: flex;
    flex-direction: row;
    

}
.imt img{
     width: 200px;
     height: 300px;
     object-fit: cover;
     margin-left: 1rem;
     border-radius: 12px;
     margin-top: 3rem;
}
.imt img:hover{
    width: 213px;
    height: 313px;
}
.shop{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    
}
.shop strong{
    letter-spacing: 2px;
    font-size: 26px;
    color: rgb(108,19,74);
}
.shop ul{
    list-style: none;
    
}
.shop ul li{
    margin-top: 2rem;
}

.shop ul li a{
    color: #313131;
    text-decoration: none;
    font-size: 24px;
}
.shop ul li a:hover{

    text-decoration: underline;
    font-size: 25px;  
}
@media (max-width: 1024px) {
    .shops {
        margin: 3rem;
        gap: 2rem;
    }

    .shop strong {
        font-size: 22px;
    }

    .shop ul li a {
        font-size: 20px;
    }

    .imt img {
        width: 180px;
        height: 260px;
        margin-top: 1.5rem;
    }
}
@media (max-width: 768px) {
    .shops {
        flex-direction: column;
        margin: 1.5rem;
        gap: 2rem;
    }

    .shop {
        align-items: center;
        text-align: center;
    }

    .shop strong {
        font-size: 20px;
    }

    .shop ul li {
        margin-top: 1rem;
    }

    .shop ul li a {
        font-size: 18px;
    }

    .wings {
        justify-content: center;
    }

    .imt {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
    }

    .imt img {
        width: 100%;
        max-width: 160px;
        height: 230px;
        margin: 0;
    }

    .imt img:hover {
        width: 100%;
        height: 230px;
    }
}
