body{
	background-color: black;
}

#conteneur{
	background-color: white;
	width: 56.25vh;
	margin: auto;
	padding-top: 1vh;
	display: flex;
	flex-direction: column;
}

.maintien{
	display: flex;
	justify-content: center;
	height: 13vh;
	width: 56.25vh;
}

#clic{
	width: 50%;
	position: relative;
	bottom: 47vh;
	animation: taille 2s ease infinite;
	align-self: center;
}

@keyframes taille{
	0%{
		width: 13vh;
	}
	50%{
		width: 11vh;
	}
	100%{
		width: 13vh;
	}
}