*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
 body {
            font-family: 'Poppins', sans-serif;
            letter-spacing: 0px;
			text-align: center;
			 border: 60px solid black;
			 outline-style: solid;
        }
.navigation{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color:black;
    font-family: 'Poppins' , sans-serif;
}
.logo{
    color:white;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: 35px;
}
.nav-liens{
    display: flex;
    background-color:black;
    justify-content: space-around;
    width: 50%;
}
.nav-liens li{
    list-style: none;
}
nav ul li a:hover{
	color: black;
	display: block;
	background-color:white;
}
.nav-liens a{
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 13px;
}
.burger{
    display:none;
    cursor:pointer;
 }
.burger div{
    width: 25px;
    height: 3px;
    background-color:rgb(226,226,226);
    margin: 5px;
}
@media screen and (max-width:1024px){
.nav-liens{
    width: 60%;
    }
} 
@media screen and (max-width:768px){
    body{
        overflow-x: hidden;
    }
.nav-liens{
    position: absolute;
     right: 0px;
     height: 92vh;
     top: 8vh;
     background-color: black;
     display:flex;
     flex-direction:column;
     align-items: center;
     width: 50%;
     transform: translateX(100%);
     transition: transform 0.5s ease-in;
    }
.nav-liens li{
    opacity: 0;
    }
.burger{
    display: block;
    }
}
.nav-active{
    transform: translateX(0%);
}
@keyframes navLinkFade{
    from{
        opacity: 0;
         transform: translateX(50px);
    }
to{
        opacity: 1;
        transform: translateX(0px);
    }
}
h1{
            font-family: 'Poppins', sans-serif;
            letter-spacing: 5px;
        }
		
footer {
            font-family: 'Poppins', sans-serif;
            letter-spacing: 5px;
			background-color: black;
			color: white;
			text-align: center;
        }
.responsive {
  width: 50%;
  height: auto;
}
* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.prev, .next {
  cursor: pointer;
  position: center-left;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
