@media only screen and (max-width: 600px) {
    body {
        padding-top: 5%;
    }

    .nav {
        display: grid;
        grid-column-start: 2;
        place-content: end;
    }

    .navbar {
        display: grid;
        grid-template-columns: 80% 20%;
    }

    .featured {
        height: 30vh;
    }

    .navbar .middle,
    .navbar .right {
        display: none;
    }

    .footer .copyright,
    .footer label {
        text-align: center;
        display: block;
    }

    .footer ul {
        justify-content: space-around;
    }

    .stories {
        height: unset;
    }

    .stories .cover {
        height: 30vh;
    }

    .stories .properties {
        display: none;
    }
    
    .carousel-cell { 
        width: 50%; 
    }

    .painting {
        display: none;
    }

    .item_picture {
        display: none;
    }

    .item_description p {
        display: none;
    }

    .item_description h2 {
        font-size: 1rem;
    }

    .item_price_qty h1 {
        margin-bottom: 0;
    }
}