    /* Large desktop */
    @media (min-width: 1200px) {

        .disco-item {
            margin-left: 20px;
        }

        .gallery-item {
            overflow:hidden;
            height: 113px;
            margin-bottom: 30px;
        }

.disco-item img {
    height: 270px;
    width: 270px;
}

    .home_tabelle {
        width: 800px;
    }   

    }
     
    /* Portrait tablet to landscape and desktop */
    @media (min-width: 768px) and (max-width: 979px) {

        .disco-item {
            margin-left: 10px;
        }

        .gallery-item {
            overflow:hidden;
            margin-bottom: 20px;
        }
.disco-item img {
    height: 166px;
    width: 166px;
}

    .home_tabelle {
        width: 800px;
    }

    }
     
    /* Landscape phone to portrait tablet */
    @media (max-width: 767px) {

        .content {
            padding: 0px;
            height: auto;
        }

        .gallery-item {
            overflow:hidden;
            height: auto;
            margin-bottom: 20px;
        }

        .gallery-item img {
            width: 100%;
        }
.disco-item img {
    height: auto;
    width: auto;
}

    .home_tabelle {
        width: 800px;
    }

    }
     
    /* Landscape phones and down */
    @media (max-width: 480px) {
    
    }