body {
	height: 100vh;
	background: rgb(0, 212, 255);
	background: radial-gradient(circle, rgba(0, 212, 255, 1) 0%, rgba(24, 20, 94, 1) 100%);
	overflow: hidden;
}

img {
	position: absolute; /* postulat de départ */
	top: 50%;
	left: 50%; /* à 50%/50% du parent référent */
	transform: translate(-50%, -50%); /* décalage de 50% de sa propre taille */
	width: 400px;
}
