/*--- Colours ---
#c51162 . rgba(197, 17, 98, 1) . pink
#512DA8 . rgba(81, 45, 168, 1) . purple
*/

* {
	box-sizing: border-box;
}

div{
	margin: 0;
}

html {
	margin: 0;
	font-size: 100%;
}

body {
	font:1rem/1.3rem 'Fira Sans',Helvetica,Arial,sans-serif;
	color: #f7f7f7;
	background-color: rgb(143, 19, 137);
	position: relative;
	-webkit-box-shadow: inset 0 0 64px 0 rgba(0,0,0,0.31);
	-moz-box-shadow: inset 0 0 64px 0 rgba(0,0,0,0.31);
	box-shadow: inset 0 0 64px 0 rgba(0,0,0,0.41),;
}
  
/* .container{
	position: relative;
	overflow: hidden;
} */

#logo {
	margin: 0;
}

header {
	width: 100%;
	margin: 0;
	padding: 1em 1.875em;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	color: #f7f7f7;
	background-color: rgba(51, 51, 51,0.3);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
  
.nav {
	list-style: none;
	margin:0;
	padding:0;
	display: flex;
}

.nav a, a.logo {
	text-decoration: none;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	color: rgb(247, 247, 247);
	display: block;
	transition: all 0.3s ease-out;
}

.nav a:hover, a:hover.logo {
	color: #c5cae9;
	opacity: 0.67;
}

.nav li {
	margin: 0 20px 0 0;
} 
	