html {
    font-size: 12px;
    max-width: 900px;
    min-width: 500px;
}

body {
    font-size: 1rem;
    overflow-x: hidden;
    font-family: "Verdana";
    /* font-family: "Open Sans", verdana, arial, sans-serif; */

}

body a {
    color:#647380;
    text-decoration: none;
    font-weight: bold;
}

body a:hover {
    text-decoration: underline;
}
.listcontainer {
display: flex;
flex: 1 1 auto;
}

.list {
    padding-right:10%;
}

.list ul a {
    color:#647380;
    
}

header {
    background-color: #1565AA;
    height: 45px;
    display: flex;
    border-bottom-width: 1px;
    border-color: black;
    flex-direction: row;
    justify-content: space-between;
}

header img {
    display: block;
    background-color:white;
    width:100px;
    margin-right:2px;
}

#pagination {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
}

header ul {
list-style-type: none;
margin:0px;
}


nav {
    margin-right: 10px;
    
}

nav > ul > li {
    background-color: #1565AA;
    display: flex;
    flex-direction: row;

}
nav > ul > li > a {
    font-size: 1rem;
    line-height: 1.5rem;
    width:100%;
    display: flex;
    flex: initial;
    width: 100%;
    color: white;
    align-items: center;
    align-content: center;
    height: 45px;
    font-weight: bold;
    text-decoration: none;
    padding-right: 15px;
    padding-left: 15px;
}

nav > ul > li > a:hover {
    border-bottom-width: 1px;
    border-color: black;
    text-decoration: underline;
    color: #647380;
    background-color: #E8E8E8;
}

nav > ul > li > a:focus {
    outline: none;
    border-bottom-width: 1px;
    border-color: black;
    text-decoration: underline;
    color:#647380;
    background-color: #E8E8E8;
}

nav > ul > li:focus-within li:hover {
    border-bottom-width: 1px;
    border-color: black;
    text-decoration: underline;
    color:#647380;
    background-color: #E8E8E8;
    
}