/* HEADER */

@font-face {
    font-family: 'CooperHewitt_Bold';
    src: url('polices/CooperHewitt-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GlacialIndifference_Regular';
    src: url('polices/GlacialIndifference-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

header {
	background: url('../images/banniere_2_min.png') no-repeat center/100%;
	background-size: cover;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;	/*allignement l'ensemble des éléments sur l'axe principale*/
    align-items: space-between;	/*allignement l'ensemble des éléments sur l'axe secondaire*/
}

#titre_principal {
	display: flex;
	flex-direction: column;
	justify-content: center;	/*allignement l'ensemble des éléments sur l'axe principale*/
	align-items: center;	/*allignement l'ensemble des éléments sur l'axe secondaire*/
	height: 40%;
	width: 33%;
	background-color: rgb(255, 255, 255);
	background-color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 120%;
	/*text-shadow: 1px 0 0 black, 0 1px 0 black, 0 -1px 0 black, -1px 0 0 black, 1px 1px 0 black, 1px -1px 0 black, -1px 1px 0 black, -1px -1px 0 black;*/
}

#titre_principal h1 {
	font-family: 'CooperHewitt_Bold', sans-serif;
	text-align: center;
    font-size: 1.8em;
    font-weight: normal;
    margin: 0 0 0 0;
}

#titre_principal h2 {
    font-family: 'GlacialIndifference_Regular', serif;
	text-align: center;
    font-size: 1.1em;
    font-weight: normal;
	margin: 0 0 0 0;
}

#titre_principal a {
	text-decoration: none;
	color: black;
}

/* Sur tous types d'écran, quand la largeur de la fenêtre fait au maximum 850px */
@media all and (max-width: 850px) {
    #titre_principal
    {
		height: 100%;
		width: 33%;
    }
}

#photo_profile {
	width: 106px;
	margin-left: auto;
	margin-right: auto;
	margin-top: -170px;
}

#photo_profile img {
	display: flex;
	border: 3px rgb(250, 250, 250) solid;
	border-radius: 30px/60px;
	/*cursor: -webkit-zoom-in; /*Modifie le curseur habituel en loupe avec un + au centre.*/
}