/*-----------------------------------------------------------------------------
 Reset
------------------------------------------------------------------------------*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
@font-face {
  font-family: 'MyFont';
  src: url('typo.ttf'); 
  font-weight: normal;
  font-style: normal;  
}
img {
	max-width: 100%;
	height: auto;
	border: none;
    vertical-align: middle;
}

/*-----------------------------------------------------------------------------
 Général
------------------------------------------------------------------------------*/
html, body {
	height: 100%;
}
body {
 	font-family: serif;
	font-optical-sizing: auto;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.5;
	color: #fff;
	background: #000;
	margin: 0;
	-webkit-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
main{
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
#content{
	padding: 30px;
}

/*-----------------------------------------------------------------------------
Photo
------------------------------------------------------------------------------*/
#photo{
	padding-bottom: 5px;	
}
#photo img{
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}
	
/*-----------------------------------------------------------------------------
Titre
------------------------------------------------------------------------------*/
#titre{
	font-size: 33px;
	line-height: 1.2;
	color: #fff;
	font-family: 'MyFont', serif;
  	font-optical-sizing: auto;
  	font-weight: 400;
  	font-style: normal;
	text-align: center;
}

/*-----------------------------------------------------------------------------
Social
------------------------------------------------------------------------------*/
#social{
	text-align: center;
	padding: 20px;
	padding-bottom: 10px;
}
#social a{
	padding: 8px;
}
#social a img{
	width: 45px;
	height: auto;
}

/*-----------------------------------------------------------------------------
Liens
------------------------------------------------------------------------------*/
#liens{
	text-align: center;
	padding: 20px;
	padding-top: 0px;
}
#liens a{
	display: block;
	background: #000;
	text-decoration: none !important;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-width: 1px;
	border-style: solid;
	border-color: #fff;
	padding: 7px 15px 7px 15px;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 30px;
	max-width: 350px;
	margin-left: auto;
	margin-right: auto;
}
#liens a.lien1{
	padding: 9px 15px 5px 15px;
}
#liens a.lien2{

}
#liens a img{
	width: auto;
	height: 25px;
}
#liens a.lien1 img{
	width: auto;
	height: 23px;
}

/* Hover
--------------------------------------------------*/
.hover-scale img,
.hover-scale svg{
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.hover-scale img:hover,
.hover-scale svg:hover{
	transform: scale(1.1);
}
