*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	background: url(img/background2.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	font-family: 'Tilt Neon', cursive;
	letter-spacing: 2px;
	color: white;
	background-color: #2a2926;
	
}

a {
	color: white;
	font-size: 19px;
  }
  
  /* header */
  
  .header {
	background-color: transparent;
	position: fixed;
	width: 100%;
	z-index: 3;
	backdrop-filter: blur(10px);
  }
  
  .header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	background-color: transparent;
  }
  
  .header li a {
	display: block;
	padding: 16px 20px;
	text-decoration: none;
	transition: 500ms;
  }
  
  .header li a:hover,
  .header .menu-btn:hover {
	background-color: grey;
  }
  
  .header .logo {
	display: block;
	float: left;
	font-size: 2em;
	padding: 18px 25px;
	text-decoration: none;
  }
  .header .logo img{
	transition: 300ms;
  }
  .header .logo:hover img {
	transform: scale(1.8);
  }

  
  /* menu */
  
  .header .menu {
	clear: both;
	max-height: 0;
	transition: max-height .2s ease-out;
	margin-right: 10px;
  }
  
  /* menu icon */
  
  .header .menu-icon {
	cursor: pointer;
	display: inline-block;
	float: right;
	padding: 35px 25px;
	position: relative;
	user-select: none;
  }
  
  .header .menu-icon .navicon {
	background: white;
	display: block;
	height: 2px;
	position: relative;
	transition: background .2s ease-out;
	width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
	background: white;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
  }
  
  .header .menu-icon .navicon:before {
	top: 5px;
  }
  
  .header .menu-icon .navicon:after {
	top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
	display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
	max-height: 240px;
	width: 100%;
	backdrop-filter: blur(10px);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
	background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
	transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
	transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
	top: 0;
  }
  
  

.home_page{
	display: flex;
	justify-content: left;
	align-items: center;
	width: 100%;
	height: 100vh;
}
.home_info{
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-left: 30px;
	padding-right: 30px;
	max-width: 775px;
	min-width: 300px;
}
.home_info h1{
	font-size: 48px;
}
.home_info p{
	font-size: 16px;
}
@media (min-width: 480px) {
	.header{
		backdrop-filter: blur(0px);
	}
	.header li {
	  float: left;
	}
	.header li a {
		padding: 25px 20px;
	}
	.header .menu {
	  clear: none;
	  max-height: none;
	}
	.header .menu-icon {
	  display: none;
	}
	.home_info h1{
 	 font-size: 60px;
	}
	.home_info p{
	font-size: 20px;
	}
}
button {
	background-color: #ebebeb;
	border: none;
	margin-top: 10px;
	padding: .6rem;
	font-size: 1rem;
	width: 8em;
	border-radius: 1rem;
	color: rgb(39, 34, 34);
	box-shadow: 0 0.2rem rgba(20, 20, 20, 0.250);
	cursor: pointer;
	transition: 300ms ease-in-out;
	border-bottom: 3px solid rgba(0, 0, 0, 0.3);
	border-right: 3px solid rgba(0, 0, 0, 0.3);
   }
   
   button:active {
	color: white;
	box-shadow: 0 0.2rem #ebebeb;
	transform: translateY(0.2rem);
   }
   
   button:hover:not(:disabled) {
	background: rgba(20, 20, 20, 0.404);
	color: white;
	text-shadow: 0 0.1rem rgba(0, 0, 0, 0.250);
	transition: 300ms ease-in-out;
   }
   
   button:disabled {
	cursor: auto;
	color: grey;
   }
.espace{
	width: 100%;
	height: 79px;
}
.titre_gal{
	width: 100%;
	padding-top: 25px ;
	padding-bottom: 25px ;
	padding-left: 30px;
	padding-right: 30px;
	display: flex;
	justify-content: center;
	align-content: center;
	font-size: 22px;
	text-align: center;
}
.galery{
	margin: auto;
	padding-top: 0px;
	padding-left: auto;
	padding-right: auto;
	padding-bottom: 100px;
	max-width: 1345px;
	display: flex;
	justify-content: space-around;
	align-items: center;

}
.galery .list{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0px 20px;
	padding: 10px;
	list-style: none;
	flex-wrap: wrap;
	gap: 15px;
}
.card{
	width: 310px;
	height: 470px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #2a2926;
	border: 5px solid black;
	border-radius: 20px;
}
.card img{
	width: 100%;
	object-fit: cover;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
.info{	
	display: flex;
	width: 100%;
	flex-direction: column;
	border-top: 5px solid black;
	text-align: left;
	list-style: none;
}
.info li{
 padding-left: 13px;
 padding-top: 2px;
 font-size: 14px;
}
.info li:nth-child(1){
	font-size: 31px;
  }



.search_bar{
	padding: 20px;
	flex-wrap: wrap;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.search_bar label{
	font-size: 25px;
}
.tape_bar{
	display: flex;
	gap: 5px;
}
#recherche{
	background: url(img/loupe.svg) no-repeat 7px 50% ;
	background-size: 20px;
	background-color: white;
	padding-left: 35px;
	height: 40px;
	border-radius: 10px;
	border-bottom: 3px solid rgba(0, 0, 0, 0.3);
	border-right: 3px solid rgba(0, 0, 0, 0.3);
}
input#find{
	width: 75px;
	display: flex;
	background-color: white;
	justify-content: center;
	align-items: center;
	height: 40px;
	border-radius: 10px;
	padding: 5px;
	font-size: 20px;
	font-weight: 500;
	font-family: 'Tilt Neon', cursive;
	padding-bottom: 10px;
	border-bottom: 3px solid rgba(0, 0, 0, 0.3);
	border-right: 3px solid rgba(0, 0, 0, 0.3);
	
}





footer{
	flex-direction: column;
	text-align: center;
	position: fixed;
	bottom: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px;
	background-color: #2a2926;
}