.storename {
    color: white;
    font-size: 100%;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 15px 15px 0 0;
}

.store {
    display: grid;
    grid-template-columns: 30% 45% 25%;
    background-color: rgb(13, 39, 59);
    width: auto;
    direction: rtl;
}

.store_item1,
.store_item2,
.store_item3,
.store_item4,
.store_item5 {
    width: auto;
    margin: 5px;
    padding: 0;
    border-radius: 15px;
    border-style: solid;
    border-color: white;
    border-width: 1px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
}
.store_item1:hover,
.store_item2:hover,
.store_item3:hover,
.store_item4:hover,
.store_item5:hover {
    filter: drop-shadow(0 0 7px rgba(0,0,0,0.5));
}

.store_item1 {
    grid-area: item1;

}

.store_item2 {
    grid-area: item2;
}

.store_item3 {
    grid-area: item3;
}

.store_item4 {
    grid-area: item4;
}
.store_item5 {
    grid-area: item5;
}
@media (max-width: 500px) {
    .store {
        padding: 30px 40px;
        grid-template-areas:
            'item1 item1 item1'
            'item2 item2 item2'
            'item3 item3 item3'
            'item4 item4 item4'
            'item5 item5 item5';
        grid-template-rows: 130px 130px 130px 130px 130px;
    }
}
@media (min-width: 501px) and (max-width: 900px) {
    .store {
        padding: 40px 40px;
        grid-template-areas:
            'item1 item2 item4'
            'item1 item3 item5';
        grid-template-rows: 150px 130px;
        grid-template-columns: 30% 40% 30%;
    }
}

@media (min-width: 901px){
    .store {
        padding: 60px 15%;
        grid-template-areas:
            'item1 item2 item3 item5'
            'item1 item2 item4 item5';
        grid-template-rows: 150px 130px;
        grid-template-columns: 28% 22% 32% 18%;
    }
    .store_item1{
        margin-bottom: 30px;
    }
    .store_item3{
        margin-left: 20px;
    }
    .store_item5{
        margin-top: 60px;
    }

}