body {
    background: #002664;

    font-family: 'ITC Officina Sans Std';
    color: white;

    margin: 10px;
    padding: 0;
    border: 0;

    width: 100%;
}

h1 {
    margin: 0;
    font-size: 40pt;
}

header {
    text-align: center;
    padding: 10px;
    display: flex;
    margin: auto;
    justify-content: center;
}

header img {
    width: 200px;
    padding-right: 20px;
}

nav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    flex-wrap: wrap;
}

nav ul li {
    margin-bottom: 10px;
}

nav ul li a:hover {
    background: white;
    color: #002664;
}

nav ul li a {
    font-size: 20pt;
    text-decoration: none;
    margin: 0 20px;
    padding: 5px;
    border: white solid 3px;
    color: white;
    border-radius: 10px;
    transition: 0.175s;
}

#active a{
    color: #002664;
    background: white;
}

main {
    text-align: center;
}

main nav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
}

main nav ul li a:hover {
    background: white;
    color: #002664;
}

main nav ul li a {
    font-size: 15pt;
    display: flex;
    text-align: center;
    margin: 0 10px;
    padding: 5px;
    width: 20px;
    height: 20px;
    border: white solid 3px;
    border-radius: 10px;
    transition: 0.175s;
    align-items: flex-start;
    justify-content: center;
}

main a{
    text-decoration: none;
    color: white;
}

#inactive{
    opacity: 0.25;
}

#inactive:hover {
    background: #032050;
    color: white;
}

#inactive a:hover {
    background: #002664;
    color: white;
}