/* || General setup */

html, body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  background-color: #ffffff;
}

body {
  width: 80%;
  margin: 0 auto;
}

/* || typography */

h1, h2, h3 {
  font-family: 'Sonsie One', cursive;
  color: #2a2a2a;
}

p, input, li {
  font-family: 'Open Sans Condensed', sans-serif;
  color: #2a2a2a;
}

h1 {
  font-size: 4rem;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 10px black;
}

h2 {
  font-size: 3rem;
  text-align: center;
}

h3 {
	 text-align: center;
  font-size: 2.2rem;
}

p, li {
  font-size: 1.6rem;
  line-height: 1.5;
}

/* || header layout */

nav, article, aside, footer {
  background-color: white;
  padding: 1%;
}

nav {
  height: 50px;
  background-color: #0066CC ;
  display: flex;
  margin-bottom: 10px;
}

nav ul {
  padding: 0;
  list-style-type: none;
  flex: 2;
  display: flex;
}

nav li {
  display: inline;
  text-align: center;
  flex: 1;
}

nav a {
  display: inline-block;
  font-size: 2rem;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
}

nav form {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2em;
}

input {
  font-size: 1.6rem;
  height: 32px;
}

input[type="search"] {
  flex: 3;
}

input[type="submit"] {
  flex: 1;
  margin-left: 1rem;
  background: #333;
  border: 0;
  color: white;
}

/* || main layout */

main {
  display: flex;
}

article {
  flex: 4;
}

aside {
  flex: 1;
  margin-left: 10px;
  background-color: #ffff00;
}

aside li {
  padding-bottom: 10px;
}

footer {
  margin-top: 10px;
}




*{box-sizing: border-box}

img{max-width: 100%}

.slider_focus{

max-width: 600px;
margin: 2rem auto
	
	}	
	
.slider_focus ul{
	
display: flex;
padding-bottom: 66.67%;/* ratio pour le responsive */
position: relative;
overflow: hidden;
list-style-type: none;
margin:0;

	
	}

.slider_focus ul li a img{

flex: 1;/*les photos occupent la même place selon la largeur du conteneur*/
padding: .5rem;
	
	}

.slider_focus ul li span img{

position: absolute;
bottom: 0;
left: -100%;
opacity: 0;
transition: all .6s
	
	}


.slider_focus ul li:focus-within span img{
	
left: 0;
opacity: 1
	
	}




