body
{
	margin: 0 0 0 0;
	font-family: 'Roboto', sans-serif;
}

header
{
	background-color: black;
	display: flex;
	align-items: center;
}

#logo
{
	margin: 40px 10px 40px 60px;
}

#menu
{
	display: flex;
	flex: 1;
	align-items: center;
}

#menu nav
{
	flex: 1;
}

#menu nav ul
{
	display: flex;
	list-style-type: none;
}

#home a, #music a, #code a, #montage a
{
	font-weight: bold;
}

#home a, #music a, #code a, #montage a, #login a
{
	color: #c6c6c6;
}

#home a:hover, #music a:hover, #code a:hover, #montage a:hover, #login a:hover
{
	color: grey;
}

#home a:active, #music a:active, #code a:active, #montage a:active, #login a:active
{
	color: white;
}

#menu nav ul li
{
	font-size: 20px;
	margin-right: 20px;
}

a
{
	text-decoration: none;
}

#login
{
	font-size: 20px;
	margin: 0 60px 0 20px;
}

section
{
	padding-top: 20px;
}

h1
{
	text-align: center;
	font-size: 60px;
}

#presentation
{
	text-align: center;
	font-size: 20px;
}

article a
{
	color: black;
	font-style: italic;
}

article a:hover
{
	font-style: normal;
	font-weight: bold;
}

article a:active
{
	font-weight: normal;
}

footer
{
	background-color: black;
	display: flex;
	justify-content: flex-end;
	padding: 20px 0 20px 0;
	position: fixed;
	bottom: 0;
	width: 100%;
}

footer ul
{
	list-style-type: none;
	display: flex;
	flex: 1;
}

footer ul li
{
	color: white;
	font-size: 17px;
}

#copyright
{
	flex: 1;
	margin-left: 20px;
}

#contact a
{
	text-decoration: none;
	color: white;
	margin: 0 60px 0 50px;
}

#contact a:hover
{
	color: grey;
}

#contact a:active
{
	color: white;
}

#imgnav a {
	max-height: 10%;
	max-width: 10%;
}

@media screen and (max-width: 850px)
{
	#menu nav ul
	{
		flex-direction: column;
	}

	#menu nav ul li
	{
		margin-bottom: 15px;
	}
}