@font-face {
    font-family: 'sinkin_sans400_regular';
    src: url('fonts/sinkinsans_400regular_macroman/SinkinSans-400Regular-webfont.eot');
    src: url('fonts/sinkinsans_400regular_macroman/SinkinSans-400Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/sinkinsans_400regular_macroman/SinkinSans-400Regular-webfont.woff') format('woff'),
         url('fonts/sinkinsans_400regular_macroman/SinkinSans-400Regular-webfont.ttf') format('truetype'),
         url('fonts/sinkinsans_400regular_macroman/SinkinSans-400Regular-webfont.svg#sinkin_sans400_regular') format('svg');
    font-weight: normal;
    font-style: normal;

}
html{
	min-height:100%
}

body {
	display: flex;
	font-family: 'sinkin_sans400_regular';
	margin: 0;
	height: 100%;
	min-height: 100vh;
	position: relative;
}

body::before{
	content: "";
	background: url("vector.jpg") center/cover no-repeat fixed;
	position: absolute;
    top: 0;
    left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.3;
	z-index: -1;
}

#bloc_page{
	display: flex;
	flex-direction: row;
	width: 100%;
	height: auto;
}

#page
{		
    width: 80%;
	margin-left: 10px;
 }

#liseret {
    width: 	14%;
    height: 100%;
	background: url(liseret.png) repeat-x;
    opacity: 50%;
    border-radius: 1%;
}

#photo
{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
	margin-top: 1%;
}

img{
	max-height: 150px;
	width: auto;
}

header h1 {
	color:  blueviolet;
	font-size: 2em;
	text-shadow: 2px 2px 2px black;
}

header h2{
	font-size: 0.8em;
}

section {
    display: flex;
	justify-content: space-between;
	gap: 15px;
}

article {
	display: flex;
	flex-direction: column;
	width: 80%;
}
article h2{
	font-size: 1.4em;
	text-decoration: underline;
}
article p{
	font-size: 1em;
	padding-left: 20px;
}
article p:hover,article ul:hover {
	border-left: 1px black solid;
}

aside{
	text-align: justify;
	width: 30%;
}

footer h2{
	font-size: 1.2em;
	text-align: center;
}
footer ul{
		text-align: center;
		list-style: none;
}
@media all and (max-width:  1024px)
{
	#liseret
	{
		display: none;
	}
	#bloc_page
	{
		flex-direction: row;
	}
	section
	{
		flex-direction: column-reverse;
	}
	aside
	{
		width: 100%;
		border: 1px solid;
		padding-left: 20px;
	}
	#page
	{
		width: 	85%;
		margin: auto;
	}
	article p:hover,article ul:hover
	{
	border: none;
	}
}