body {
    background-color: #EBF5FA;
    background: linear-gradient(180deg, rgba(235,245,250,1) 0%, rgba(180,184,223,1) 60%, rgb(83, 127, 161) 120%);
    color: #22282A;
    font-family: "commissioner", sans-serif;
    margin: 0px;
}

/*logo */
#logo {
    float: left;
    color: #426A8A;
    font: 30px "Gloock", serif;
    text-decoration: none;
    margin: 0% 1% 1% 5%;
    padding-top: 1%;
    position: sticky;
    top: 0;
    z-index: 1;
}


/*navigation bar*/
.topnav {
    background-color: #C9BADE;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    padding-right: 2%;
    text-align: right;
    justify-content: space-around;
    position: sticky;
    top: 0;
}

.topnav a {
    position: relative;
    color: #22282A;
    text-decoration: none;
    font: 17px "commissioner", sans-serif;
    padding: 1% 1% 1% 1%;
    letter-spacing: .5px;
}

/*navigation bar animations*/
.topnav a:before,
.topnav a:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    background-color: #426A8A;
    transition: 0.5s;
}

.topnav a:after {
    left: 0;
    bottom: -2px;
}

.topnav a:before {
    right: 0;
    top: -2px;
}

a:hover {
    color: #426A8A;
}

.topnav a:hover:after,
.topnav a:hover:before {
    width: 100%;
}

a:active {
    color: #426A8A;
}


/*gallery*/
#heading {
    font: 40px "gloock", serif;
    color: #7A7EB8;
    text-decoration: none;
    transition-duration: .3s;
    display: flex;
    justify-content: center;
    margin-top: 3%;
}

#heading:hover {
    color: #426A8A;
}

p {
    font-size: 17px;
    text-align: center;
    margin: 1% 10% 3% 10%;
    line-height: 1.5;
}

.row1, .row2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    aspect-ratio: 3 / 2;
    max-width: 30%;
    object-fit: cover;
    border-radius: 10px;
    margin: 1% 1% 1% 1%
}

