@keyframes circle {
   0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
   overflow-x: hidden;
}
nav {
	display: flex;
	justify-content: space-around;
	align-items: center;
	min-height: 8vh;
	font-family: 'roboto', sans-serif;
}

.logo {
  width: 130px;
  left: 0;
  right: 0;
  margin: 10px -40px;
}

.logo a {
	color: #000000;
	letter-spacing: 3px;
	font-size: 20px;
  text-decoration: none;
}

.nav-links {
display: flex;
justify-content: space-around;
width: 40%;
}
.nav-links li {
	list-style: none;
}
.nav-links a {
color: #000000;
text-decoration: none;
letter-spacing: 2px;
font-weight: bold;
font-size: 14px;
}

.burger {
	display: none;
	cursor: pointer;
}

.burger div {
width: 25px;
height: 3px;
background-color: #000000;
margin: 5px;
transition: all 0.3s ease;
}
@media screen and (max-width: 1024px){
  .nav-links {
width: 60%;
	}
}

@media screen and (max-width: 768px){
  	body {
    overflow-x: hidden;
	}

 .nav-links {
		position: absolute;
		right: 0px;
		height: 20vh;
		top: 8vh;
		background-color: #ffffff;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		opacity: 0;
    transition: transform 0.5s ease-in;
	}
	.burger {
    display: block;
	}
}

.nav-active {
opacity: 1;
}

@keyframes navLinkFade{
	from{
		opacity: 0;
		transform: translateX(50px);
	}
	to{
		opacity: 1;
		transform: translateX(0px);
	}
}

.toggle .line1{
	transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
	opacity: 0;
}
.toggle .line3{
	transform: rotate(45deg) translate(-5px,-6px);
}

.titre {
   position: relative;
  height: 0;
  top: 5vh;
  left: 20px;
  width: 15%;
  z-index: 2;
}

.titre img {
  animation: circle 8s infinite linear;
}

.texte  {
 height: 95vh; 
  margin: 0 auto 0 auto;
  background-image: url(serigraphie.jpg);
  background-size: cover;
  background-position: center;
}

.sectionblanc {
  margin: 0 auto 0 auto;
  height: 10vh;
}

.section3 {
  display: flex;
  flex-direction: row;
}

.section3 div {
 width: 42.5%;
  height: 110vh;
}

.section3 .gauche {
 width: 5%;
  height: 80vh;
}
.section3 .centre {
 width: 5%;
  height: 80vh;
}
.section3 .droit {
 width: 5%;
  height: 80vh;
}

.section3 .articlerecent1 {
  height: 80vh;
  background-image: url(noirceur.jpg);
  background-size: cover;
  background-position: center;
}

.section3 .articlerecent1 a {
 display: block;
 height: 80vh;
 text-decoration: none;
}
.articlerecent1 h2 {
  height: 80vh;
  font-family: roboto;	
  display: flex;
	justify-content: center;
	align-items: center;
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  text-decoration: none;
}

.articlerecent2 a {
  display: block;
  height: 80vh;
  text-decoration: none;
}
.section3 .articlerecent2 {
  height: 80vh;
  background-image: url(poolcopping.jpg);
  background-size: cover;
  background-position: center;
}

.sectionblanc2 {
  margin: 0 auto 0 auto;
  height: 10vh;
}

.articlerecent2 h2 {
  height: 80vh;
  font-family: roboto;	
  display: flex;
	justify-content: center;
	align-items: center;
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  text-decoration: none;
}

@media (max-width: 800px) {
  .section3 {
    display: block;
  }
  .section3 div {
      width: 100%;
    height: 100vh;
  }
  .section3 .articlerecent1 {
    height: 80vh;
    border-left: 5vh solid #ffffff;
    border-right: 5vh solid #ffffff;
  }
  h2 {
    height: 60vh;
  }
  .section3 .articlerecent1 a {
    height: 60vh;
  }
   .section3 .articlerecent2 {
    height: 80vh;
    border-left: 5vh solid #ffffff;
    border-right: 5vh solid #ffffff;
  }
  .section3 .gauche {
  display: none;
} 
 .section3 .centre {
  height: 5vh;  
  }
.section3 .droit {
  display: none;
} 
 .sectionblanc {
  height: 5vh;  
  } 
  
   .sectionblanc2 {
  height: 5vh;  
  } 
  
  .titre {
    width: 20%;
  }
  .texte {
   height: 80vh;
  }
}

footer {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-family: roboto;
  font-size: 14px;
  }
