*{
    margin: 0;
    padding: 0;


}
html{
    height: 100%;
}
body{
    height: 100%;
    background: radial-gradient(white, rgb(236,236,236));
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

nav{
    height: 85px;
    background-color: white;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.11);
	display:flex;
	align-items:center;
	justify-content: space-between;
	flex:0 0 100%;
}

nav ul{
    /*float: right;*/
}
nav ul li{
    list-style: none;
    position: relative;
}
nav ul li a{
    font-family: gENTIUM;
    color: #0d0d0d;
    font-size: 24px;
    text-decoration: none;
    padding: 28px;
    display: block;
}
nav ul li a:hover{
    background-color: #ebebeb;
} 
nav ul li ul{
    display: none;
    position: absolute;
    background-color: #b8b5b0;
    padding: 7px;
    border-radius: 0px 0px 12px 12px;
}
nav ul li:hover ul{
    display: block;
}
nav ul li ul li a{
    color: white;
    padding: 16px 20px;
    border-radius: 10px;
}
nav ul li ul li a:hover{
    background-color: #90918e;
}
nav b:{
text-align: center;
}