html,
body {
    height: 100%;
}
.searchContaire {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	margin: 0;
	padding: 0;
}
.searchOnglet {
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-family: "Fugaz One", sans-serif;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.8px;
	position: relative;
	display: inline-block;
}
.searchOnglet::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 4px;
	border-radius: 20px;
	background-color: #009cff;
}


.searchContaire a {
	color: #fff;
	text-decoration: none;
}
.searchContaire a.aSearcheActu.hidden {
	display: none;
}
.searchContaire .searchBox {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 250px;
    height: 320px;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.searchContaire .searchBox .affiche {
	height: 250px;
	width: 200px;
	border-radius: 10px;
	overflow: hidden;
	transition: all ease-in-out 0.3s;
}
.searchContaire .searchBox .affiche:hover {
	transform: scale(1.04);
	box-shadow: 0 10px 10px rgb(0, 0, 0, 0.5);
}
.searchContaire .searchBox .affiche img {
	width: 100%;
}
.searchContaire .searchBox .title {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
	text-align: center;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 14px;
	font-family: 'PT Sans', sans-serif;
	margin-top: 10px;
}