/* This CSS file will help lay out the UI for the gallery to make it presentable for the user */
div.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s;
    background: #1e3a5f;
    background-image: -webkit-linear-gradient(top, #1e3a5f, #0d223d);
    background-image: -moz-linear-gradient(top, #1e3a5f, #0d223d);
    background-image: -ms-linear-gradient(top, #1e3a5f, #0d223d);
    background-image: -o-linear-gradient(top, #1e3a5f, #0d223d);
    background-image: linear-gradient(to bottom, #1e3a5f, #0d223d);
    -webkit-border-radius: 3;
    -moz-border-radius: 3;
    border-radius: 3px;
    padding: 15px;
    -webkit-box-shadow: 0px 2px 6px #000000;
    -moz-box-shadow: 0px 2px 6px #000000;
    box-shadow: 0px 2px 6px #000000;
    min-width: auto;
    max-width: auto;
    margin-left: auto;
    margin-right: auto;
    border-top: solid #2a5792 1px;
    border-right: solid #1e3a5f 1px;
    border-bottom: solid #0d223d 1px;
    border-left: solid #1e3a5f 1px;
}
<<<<<<< Updated upstream
=======
div.staticgallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    background: #1e3a5f;
    background-image: -webkit-linear-gradient(top, #2a3640, #1e3a5f);
    background-image: -moz-linear-gradient(top, #2a3640, #1e3a5f);
    background-image: -ms-linear-gradient(top, #2a3640, #1e3a5f);
    background-image: -o-linear-gradient(top, #2a3640, #1e3a5f);
    background-image: linear-gradient(to bottom, #2a3640, #1e3a5f);
    -webkit-border-radius: 3;
    -moz-border-radius: 3;
    border-radius: 3px;
    padding: 15px;
    -webkit-box-shadow: 0px 2px 6px #000000;
    -moz-box-shadow: 0px 2px 6px #000000;
    box-shadow: 0px 2px 6px #000000;
    min-width: auto;
    max-width: auto;
    margin-left: auto;
    margin-right: auto;
    border-top: solid #2a5792 1px;
    border-right: solid #1e3a5f 1px;
    border-bottom: solid #0d223d 1px;
    border-left: solid #1e3a5f 1px;
}
>>>>>>> Stashed changes
div.gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.2s;
}
div.gallery:hover{
    transform: scale(1.05);
    transition: transform 0.2s;
}
div.gallery:active {
    transform: scale(0.95);
    transition: transform 0.2s; 
}
div.desc{
    background: #1e3a5f;
    background-image: -webkit-linear-gradient(top, #1e3a5f, #2a5792);
    background-image: -moz-linear-gradient(top, #1e3a5f, #2a5792);
    background-image: -ms-linear-gradient(top, #1e3a5f, #2a5792);
    background-image: -o-linear-gradient(top, #1e3a5f, #2a5792);
    background-image: linear-gradient(to bottom, #1e3a5f, #2a5792);
    -webkit-border-radius: 3;
    -moz-border-radius: 3;
    border-radius: 3px;
    padding: 15px;
    text-shadow: 1px 1px 0px #000000;
    -webkit-box-shadow: 0px 2px 6px #000000;
    -moz-box-shadow: 0px 2px 6px #000000;
    box-shadow: 0px 2px 6px #000000;
    font-family: Georgia;
    color: #e0e0e0;
    font-size: 15px;
    min-width: auto;
    max-width: auto;
    margin-left: auto;
    margin-right: auto;
    border-top: solid #2a5792 1px;
    border-right: solid #1e3a5f 1px;
    border-bottom: solid #0d223d 1px;
    border-left: solid #1e3a5f 1px;
    text-decoration: none;
    text-align: center;
}
*{
    box-sizing: border-box;
}
.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;
}
