#gallery1 {
    width: 100%;
    background-color: white;
}
#gallery1 > nav {
    width: 100%;
    background: linear-gradient(105deg, #312D8A 0%, #252263 100%);
    height: 200px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 30px;
}
#gallery1 > nav > p {
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #fff;
}
#gallery1 > nav > p > a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}
#gallery1 > nav > h1 {
    width: 100%;
    height: 100px;
    line-height: 100px;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
}
#gallery1 > div {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
}

.gallery1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}
.gallery1 img {
    width: 100%;
}