<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.fn-rectangle {
	display: flex;
}

.fn-background {
	width: 70%;
	padding-top: 30%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}

.fn-text {
	position: absolute;
	top: 24px;
	left: 24px;
	color: #FFF;
	font-size: 30px;
}

.fn-content {
	width: 30%;
	padding-top: 30%;
	position: relative;
}

.fn-content-wrap {
	box-sizing: border-box;
	background-color: #668375;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 48px;
	color: #FFF;
}

@media screen and (max-width: 480px) {
	.fn-rectangle {
		flex-direction: column;
	}
	
	.fn-background {
		width: 100%;
		padding-top: 50%;
	}
	
	.fn-content {
		width: 100%;
	}
}</pre></body></html>