* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:link {
    color: #050A30;
    text-decoration: none;
 }

a:visited {
    color: #000C66;
    text-decoration: none;
}

a:active {
    color: #ff0000;
    text-decoration: underlined;
}

a:hover {
    color: #7EC8E3;
    text-decoration: non;
}

body {
    text-align: center;
    color: #050A30;
}

.top {
    background-color: #050A30;
    width: 100%;
    height: 42px;
    margin-bottom: 16px;
}

.header {
    color: #000C66;
}

.header-image {
    margin: 16px auto 16px auto;
}

img {
    max-width: 60%;
    height: auto;
}

.caption {
   font-style: italic;
}

.body {
   width: 80%;
   margin: 2% auto 0 auto;
   display: flex;
   flex-direction: column;
   justify-content: center; 
   align-items: stretch;
 }

.section {
   margin: 4px;
 }

.links {
   display: flex;
   flex-direction: row;
   justify-content: space-evenly;
   width: 80%;
   margin: 16px auto 16px auto;
 }

.link-item {
    font-weight: bold;
 }