body {
	margin: 0;
	font-family: 'Roboto', sans-serif, 'Beaterial';
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 100vh;
	color: #333;
	background-color: #f3f7fe;
}

.container {
	display: flex;
	width: 100%;
	justify-content: space-evenly;
	align-items: center;
	padding: 2.2rem;
	gap: 2rem;
}

.message {
	display: flex;
	flex-direction: column;
	line-height: 0;
}

.message .title {
	font-size: 2rem;
	color: #393f4d;
	word-wrap: break-word;
	line-height: 2rem;
}

.message .additional-info {
	font-size: 1rem;
	color: #7a8193;
	word-wrap: break-word;
	line-height: 1.4rem;
}

.error-svg-top,
.error-svg-bottom {
	display: flex;
	align-items: center;
	width: 32.5rem;
	height: 28.375rem;
}

.error-svg-top svg,
.error-svg-bottom svg {
	width: 100%;
	height: 100%;
}

.error-svg-top {
	display: none;
}

@media (max-width: 767px) {
	.container {
		flex-direction: column;
	}

	.message {
		align-items: center;
	}

	.message .title {
		font-size: 1.5rem;
		line-height: 1.5rem;
	}

	.message .additional-info {
		font-size: 0.875rem;
		line-height: 1.2rem;
	}

	.error-svg-top,
	.error-svg-bottom {
		width: 16.25rem;
		height: 14.1875rem;
	}

	.error-svg-top {
		display: block;
	}

	.error-svg-bottom {
		display: none;
	}
}
