@font-face {
    font-family: 'FreeSans';
    src: url('../fonts/FreeSansBold.woff2') format('woff2'),
        url('../fonts/FreeSansBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FreeSans';
    src: url('../fonts/FreeSansBoldOblique.woff2') format('woff2'),
        url('../fonts/FreeSansBoldOblique.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'FreeSans';
    src: url('../fonts/FreeSans.woff2') format('woff2'),
        url('../fonts/FreeSans.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FreeSans';
    src: url('../fonts/FreeSansOblique.woff2') format('woff2'),
        url('../fonts/FreeSansOblique.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

html {
    font-family: 'FreeSans', sans-serif;
}

.logo {
    display:flex;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0px;
    margin-right: auto;
    padding-top: 0;
    justify-content: center;
    width: 391;
    max-width: 100%;
    height: auto;
}

a:link {
    text-decoration: none;
    font-weight: bold;
}

a:visited {
    color: purple;
}

a:hover{
    color: black;
}

/* navbar */
nav {
    margin: 0;
    background: #192c96;
    padding-top: 1em;
    padding-bottom: 1em;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a:link {
    color: #ffffff;
}

nav ul li a:visited {
    color: rgb(167, 177, 192);
}

nav ul li a:link:hover {
    text-decoration: underline;
}
/* end navbar */

body {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    margin-right: 10px;
}

h1 {
    margin-left: 10px;
}

dt {
    font-weight: bold;
    margin-left: 10px;
}

dd {
    margin-top: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
}

p {
    margin-left: 10px;
}

section{
    margin-left: 10px;
}

footer {
    display: flex;
    justify-content: flex-end;
    /* flex-shrink: 0; */
    text-align: center;
}

.logo_right {
    /* display: inline-flex; */
    justify-content: right;
    width: 421;
    max-width: 100%;
    height: auto;
}

