body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 100vh;
	background-color: #111;
	font-family: 'Montserrant', sans-serif;
}

.img-box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border-radius: 18px;
	background-color: #fff;
	overflow: hidden;
}
.img-box::before {
    content: 'Radości w każdej sekundzie, uśmiechu w każdej minucie, pogody w każdej godzinie, zdrowia i szczęścia przez całe życie życzą Iwona I Darek.';
    position: absolute;
    bottom: 5%;
}

.img {
	transform: scale(1.1);
}

.img:hover {
    animation: img-move .8s forwards;
}

@keyframes img-move {
	0% {
		transform: scale(1.1) translateY(0);
	}

	50% {
		transform: scale(1) translateY(0);
	}
    
	100% {
        transform: scale(1) translateY(-20%);
		}
}
figcaption {
	color: #fff;
}
figure {
	margin: 0;
}
