body {
    background: #ebf5fa;
    background: linear-gradient(180deg, rgba(235,245,250,1) 0%, rgba(122,126,184,1) 100%);
    color: #22282A;
    font-family: "commissioner", sans-serif;
    margin: 0px;
}

/*responsive layout*/
.column {
    float: left;
}

.column.side {
    width: 25%;
}

.column.middle {
    width: 50%;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}


/*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;
}

.topnav a:hover {
    color: #426A8A;
}

.topnav a:hover:after,
.topnav a:hover:before {
    width: 100%;
}


/*text*/
h1 {
    font: 70px "Gloock", serif;
    text-align: center;
    color: #426A8A;
    margin-top: 5%;
    margin-bottom: 2%;
}

p {
    text-align: left;
    font-size: 19px;
    margin-right: 15%;
    margin-left: 45%;
    line-height: 1.5;
}

/*image*/
img {
    border-radius: 10px;
    box-shadow: 15px 15px #426A8A;
    float: left;
    max-width: 25%;
    margin: 1.5% 5% 1% 15%;
}