/* Déclaration des nouvelles polices */
@font-face {
	font-family: 'BallparkWeiner';
	src: url('../fonts/ballpark.eot');
	src: url('../fonts/ballpark.ttf');
	src: url('../fonts/ballpark.woff');
	font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: 'Day Roman';
	src: url('../fonts/dayrom.eot');
	src: url('../fonts/dayrom.ttf');
	src: url('../fonts/dayrom.woff');
	font-weight: normal;
    font-style: normal;
}


/* Apparence général de la page */
body {
	background-image: url('../img/fond_jaune.png');
}

#bloc_page {
	width: 900px;
	margin: auto;
}

header h1 {
	font-family: 'BallparkWeiner',serif;
}

header h2, nav a, section h1, footer h1 {
	font-family: 'Day Roman',sans-serif;
	font-weight: normal;
}

a {
	text-decoration: none;
}


/* Header */
header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	background: url('../img/separateur.png') bottom repeat-x;
	margin-bottom: 10px;
}

#logo {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

#logo img {
	width: 60px;
	height: 60px;
}

header h1 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 2.6em;
	font-weight: normal;
}

header h2 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 1.1em;
}

nav {
	margin-bottom: 15px;
}
nav a {
	color: black;
	padding-right: 15px;
	font-size: 1.2em;
}

nav a:hover {
	text-decoration: underline;
	color: rgb(128,0,0);
}


/* Banniere */
#banniere {
	background-image: url('../img/sanfrancisco.jpg');
	height: 205px;
	width: 900px;
	border-radius: 5px;
	margin-top: 15px;
	box-shadow: 0px 2px dimgrey;
}

#description_banniere {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 890px;
	height: 30px;
	position: relative;
	bottom: -155px;
	background-color: rgba(0,0,0,0.7);
	color: white;
	padding: 10px 5px 10px 5px;
	border-radius: 0 0 5px 5px;
	z-index: 1;
}

#bouton_rouge {
	z-index: 2;
	background-image: url('../img/fond_degraderouge.png');
	border: 1px solid rgb(128,0,0);
	border-radius: 5px;
	padding: 5px;
}

#bouton_rouge a {
	text-decoration: none;
	color: white;
}


/* Corps */
section {
	display: flex;
	justify-content: space-between;
	text-align: justify;
	margin-top: 20px;
}

article {
	text-align: justify;
	margin-right: 15px;
	width: 650px;
}

article h1 {
	vertical-align: middle;
}

aside {
	text-align: justify;
	padding: 10px;
	background-color: dimgrey;
	border-radius: 5px;
	width: 260px;
	height: 48vh;
	color: white;
	text-shadow: 1px 1px black;
	font-weight: normal;
	font-size: 0.9em;
	position: relative;
}

aside h1 {
	font-size: 105%;
}

#bulle {
	position: absolute;
	right: 267px;
	top: 100px;
}

#zozor {
	text-align: center;
}

#zozor img {
	border: solid 1px rgba(0,0,0,0.7);
}


/* Footer */
footer {
	display: flex;
	justify-content: space-between;
	background: url('../img/ico_top.png') top no-repeat, url('../img/separateur.png') top repeat-x, url('../img/ombre.png') top repeat-x;
	padding-top: 20px;
}

footer h1 {
	font-size: 90%;
}

#photos img {
	border: solid 1px black;
	border-radius: 2px;
	margin-right: 10px;
}

#amis {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
}

#amis li {
	list-style-image: url('../img/ico_liensexterne.png');
}

#amis a {
	text-decoration: none;
	color: rgb(128,0,0);
}

