.nav{
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
	width: 100%;
	background-color: rgb(192, 9, 44);
}
.nav li{
    display:inline-block;
}
.nav a{
    display:inline-block;
    padding: 0.5em;
	color: rgb(200, 200, 200);
	text-align: center;
	transition: 0.5s;
	text-decoration: none;
}

.nav a:hover {
    color: white;
	background-color: rgb(150, 15, 45);
}

.nav a[href="#"] {
	color: white;
}

.topnav-right {
    float: right;
}

.sidenavigation{
	display: none;
}

