* {
    margin: 0;
	padding: 0;
    font-family:Ariel, Helvetica, sans-serif;
}

body {
	background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0.5rem;
	padding: 5;
}

img {
	margin: 20;
}

.top-title {
	background-color: #FFD71E ;
	overflow: hidden;
}

.top-title p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 2.5rem;
}

nav {
    background-color: #04368F;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 60px;
}

nav li:first-child {
    margin-right: auto;
    margin-left: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

nav a {
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

nav a:hover {
    background-color: #032c71;
}

#active {
	background-color: #FFD71E;
	color: black;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(3, 44, 113, 0.3);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sidebar li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.sidebar a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 
    padding: 0;
}

.sidebar a:hover {
    background-color: rgb(3, 44, 113, 0.2);
}

.Sidebar-Close-NavIcon-SB {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0px;
}

@media(max-width: 800px){
    .hideOnMobile{
        display: none;
    }
}

@media(max-width: 500px){
    .sidebar{
        width: 100%;
    }
}

@media not (max-width: 800px){
    .hideOnDesktop{
        display: none;
    }
}

footer {
	background-color: #E33C3C;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}
