* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body, html {
    height: 100%;
}

.bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: 500% 500%;
    background-image: linear-gradient(-45deg, rgb(23, 191, 23) 0%, rgb(25, 129, 25) 25%, rgb(42, 175, 42) 51%, #12a11c 100%);
    animation: AnimateBG 10s ease infinite;
    text-align: center;
    padding: 20px;
}

header h1, header h2 {
    margin: 10px 0;
}

h3 {
    margin: 20px 0 10px;
}

.image-row1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.image-row1 img {
    width: 17%;
    min-width: 100px;
    max-width: 0px;
}

.image-row2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-right: 35px;
}

.image-row2 img {
    width: 17%;
    min-width: 100px;
    max-width: 0px;
}

.image-row3 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.image-row3 img {
    width: 17%;
    min-width: 100px;
    max-width: 0px;
}

.image-row4 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.image-row4 img {
    width: 17%;
    min-width: 100px;
    max-width: 0px;
}

.image-row5 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.image-row5 img {
    width: 50%;
    min-width: 300px;
    max-width: 400px;
}

#edit-img img {
    transition: -webkit-filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out;
}

#edit-img:hover img {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.links a {
    display: block;
    margin: 10px 0;
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}

.links a:hover {
    text-decoration: underline;
}

@keyframes AnimateBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
