.galleryBox {
    display: grid;
    grid-template-columns: auto auto;
    align-content: space-between;
    justify-content: center;
}

h3 {
    margin-left: 1rem;
}

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

div.gallery:hover {
    border: 2px solid white;
    width: 200px;
}

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

div.desc {
    padding: 15px;
    text-align: center;
}
.fix {
    clear:left;
}