@font-face {
    font-family: 'TwoPunches-Regular';
    src: url('twopunches-regular-webfont.woff2') format('woff2'),
         url('twopunches-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@import url(https://fonts.googleapis.com/css?family=Bree+Serif);

body {
	background: white;
	font-size:20px;
	line-height: 32px;
	color: black;
	word-wrap: break-word;
	font-family: 'TwoPunches-Regular', sans-serif;
	}

h1 {
	font-size: 60px;
	text-align: center;
	color: black;
}	

h3 {
	font-size: 30px;
	text-align: center;
	color: black;
}

h3 a {
	color: black;
}

a {
	color: black;
}

h2 {
	text-align: center;
	text-decoration: underline;
}

h1 {
	margin-top: 50px;
	text-align:center;
	font-size:60px;
	}
	
.liens ul {
	text-align: center;
}

.liens li {
    text-align: center;
    vertical-align: middle;
}

#container {
	margin: 0 auto;
}

p {
	text-align: center;
}

nav {
	margin: 50px 0;
	background-color: white;
	border-color: black;
}

nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	}
	
nav ul li {
	display: inline-block;
	background-color: white;
	}
	
nav ul li a {
	width: 100%;
    display: block;
    padding: 15px;
    border: 1px solid black;
    color: black;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: black;
    color: white;
}

nav ul ul {
	display: none;
	position: absolute; 
	top: 60px;
}

nav ul li:hover > ul {
	display:inherit;
	opacity: 1;
	visibility: visible;
}
	
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
	display: 1s;
}

nav ul ul ul li {
	position: relative;
	top:-50px; 
	left:170px;
}

li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }
aside {
    float: left;
    width: 30%;
    margin-right: 10px;
}

aside img {
    max-width: 80%;
    height: 75%;
    display: block;
	margin-left: 30px;
	border: 10px ridge black;
}

aside img:hover {
    transform: scale(1.05);
	transition: transform 0.3s ease;
}

table {
    width: 60%;
	height: 100%;
    margin-left: auto;
    margin-right: auto;
}

table,
th,
td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
}

.fan-art-gallery table {
    width: 100%;
}

.fan-art-gallery td {
    width: 20%;
    padding: 10px;
}

.fan-art-gallery img {
    width: 100%; 
    height: auto;
    border: 5px groove black;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.fan-art-gallery img:hover {
    transform: scale(1.05);
}