﻿body, h2, h3, h1, a
{
	font-family: 'Trebuchet MS', Arial, sans-serif;
	text-align : center;
	color: #741A11;
}

body {
	background:url('images/arabesque.jpg');
}

h1{
	margin:auto;
	display: inline-block;
	height: 43px; 
	text-align: center;
	background: #C9C9C9;
	background: -webkit-linear-gradient( #555, #C9C9C9); 
	background: -moz-linear-gradient( #555, #C9C9C9); 
	background: -ms-linear-gradient( #555, #C9C9C9); 
	background: -o-linear-gradient( #555, #C9C9C9); 
	background: linear-gradient( #555, #C9C9C9);
	border-radius: 8px;
}

h1:hover {
	color: #222; 
	background: #555; 
	background: -webkit-linear-gradient( #777, #C9C9C9); 
	background: -moz-linear-gradient( #777, #C9C9C9); 
	background: -ms-linear-gradient( #777, #C9C9C9); 
	background: -o-linear-gradient( #777, #C9C9C9); 
	background: linear-gradient( #777, #C9C9C9);
}

h1:active{ 
	color: #000; 
	background: #444; 
	background: -webkit-linear-gradient( #555, #2C2C2C); 
	background: -moz-linear-gradient( #555, #2C2C2C); 
	background: -ms-linear-gradient( #555, #2C2C2C); 
	background: -o-linear-gradient( #555, #2C2C2C); 
	background: linear-gradient( #555, #2C2C2C); 
	box-shadow: 1px 1px 10px black inset, 
				0 1px 0 rgba( 255, 255, 255, 0.4); 
}

h2{
	font-weight: bold;
	background-color: #C9C9C9;
}

a {
	text-decoration : none;
}

a:hover {
	font-weight: bold;
}
.photo_andre{
	text-align: center;
}

.contact {
	width: 50%;
	margin : auto;
}





body
{
	display: grid;
}

#content
{
	grid-row: 1;
	grid-column: 1;
	
	display: grid;
    grid-template-columns: min-content 1fr min-content;
    grid-template-rows: min-content 1fr;
	
	width: 100%;
	height: 100%;
}

#general 
{
	grid-row:2;
	grid-column:1 / span 3;
}

#video 
{
	grid-row:1;
	grid-column:3;
}

#carte_identite 
{
	grid-row:1;
	grid-column:1;
	
	display: inline-block;
	background: Whitesmoke;
	padding: 10px;
	margin: 20px 0px 60px 20px;
	border-radius: 3px;
	border: 1px solid gray;
	white-space: nowrap;
	
    justify-self: left;
}

#carte_identite img {
	margin: 5px;
}

#site_link
{
	padding: 5px;
}

#annonce_parution
{	
	grid-row: 1;
	grid-column: 1;
	
	display: grid;
	align-self: start;
	justify-self: center;
	
    width: 250px;
    padding: 10px;
	margin-right: 20px;

	color: Whitesmoke;
    background: #C7675d;
    border-radius: 5px;
	
	box-shadow: 0px 0px 28px 6px rgba(0,0,0,0.6);
}

#annonce_parution #livre_titre
{	
	grid-row: 1;
	grid-column: 1;
	font-size: 20px;
}

#annonce_parution #livre_titre #auteur
{
	font-style: italic;
	font-size: 13px;
}

#annonce_parution #livre_img
{
	grid-row: 2;
	grid-column: 1;
}

#annonce_parution #livre_img img
{
	width: 150px;
	margin-top: 5px;
}

#annonce_parution #annonce
{	
	grid-row: 3;
	grid-column: 1;
}

#annonce_parution #annonce_link
{
	grid-row: 4;
	grid-column: 1;
	text-decoration: underline;
	color: #ffffcc;
	transition: 0.5s;
}

#annonce_parution #annonce_link:hover
{
	color: #ffcc00;
	font-weight: normal;
}

#annonce_parution #annonce_new
{	
	grid-row: 2;
    grid-column: 1;
	
    width: 150px;
    justify-self: center;
    align-self: end;
    margin-bottom: 35px;
    background: red;
    color: white;
    height: 25px;
    line-height: 25px;
	
	font-size: 18px;
	
	animation: blink 01s infinite;
}

@keyframes blink
{
    50%
	{
		background: yellow;
		color: black;	
    }
}