body {
	background-color: AliceBlue;
	color: DarkSlateGray;
	
	font-family: 'ElMessiriRegular';
   font-weight: normal;
   font-style: normal;
   
}

.smallimage {
	max-width: 25%;
   max-height: 25vh;
   margin: auto;
}

.navigationbar {
	background-color: LightBlue;
	width: auto;
	margin: 0 -1em;
	margin-top: -1em;
	padding: 0;
	border: 0;
}

nav ul {
	text-align: center;
	
	-moz-column-count: unset;
    -moz-column-gap: unset;
    -webkit-column-count: unset;
    -webkit-column-gap: unset;
    column-count: unset;
    column-gap: unset;
	}

nav ul li {
	    display: inline-block;
	    list-style-type: none;
	    background-color: LightBlue;
}

nav > ul > li > a {
	    display: block;
	    line-height: 2em;
	    padding: 0.5em 0.5em;
	    text-decoration: none;
	    font-size: 110%;
	    transition: .3s background-color;
	    text-shadow: 0.1em 0.1em 0.2em #333333;
}

nav > ul > li > a:hover {
  background-color: PaleGoldenrod;
}

nav > ul > li > a.active {
  background-color: PaleTurquoise;
  color: Ivory;
}