/* @@@@@@@@@@@@@@@@@@@ DEFAULT SETTINGS @@@@@@@@@@@@@@@@@@@ */

* {
    box-sizing:border-box
}

/* @@@@@@@@@@@@@@@@@@@ TEXT SETTINGS @@@@@@@@@@@@@@@@@@@ */

.text-h1{
    color: black;
    align-items: center;
    text-align: center;
    margin: 20px 10px 10px 10px ;
}

/* @@@@@@@@@@@@@@@@@@@ GALLERY ITEMS @@@@@@@@@@@@@@@@@@@ */

.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 180px;
}

.gallery:hover {
    border: 1px solid #777;
}

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

.responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
}

@media only screen and (max-width: 700px) {
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px) {
    .responsive {
        width: 100%;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}