body {
	margin: 0;
}

.wrapper {
	width: 440px;
	margin: 0 auto;
	height: 956px;
	background-color: rgba(37, 43, 56, 1);
}

.wrapper > div {
	position: relative;
}

.top {
	background-image: url('../img/top.png');
	height: 318px;
}

.top img {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -95%);
}

.spacer {
	height: 114px;
}

.bottom {
	background-image: url('../img/bottom.png');
	height: 524px;
}

.figure {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-48%, -46%);
	width: 90%;
    max-width: 403px;
    height: auto;
}

.figure img {
	width: 100%;
    height: auto;
    display: block;
}

.buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	position: absolute;
	top: 25%;
}

/* .buttons a {
	transition: transform 0.3s ease;
}

.buttons a:hover {
	transform: scale(1.1);
} */

@media  (max-width: 440px) {
	.wrapper {
		width: 100%;
	}
}