body {
	background-color: #eff0f5;
}

.container {
	max-width: 1200px;
	background-color: white;
}

.containerimg {
	position: relative;
	padding-bottom: 100%;
}

.squareimg {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.title2line {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-height: 16px;
	/* fallback */
	max-height: 32px;
	/* fallback */
	min-height: 32px;
	-webkit-line-clamp: 2;
	/* number of lines to show */
	-webkit-box-orient: vertical;
}

.title3line {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-height: 16px;
	/* fallback */
	max-height: 48px;
	/* fallback */
	min-height: 32px;
	-webkit-line-clamp: 3;
	/* number of lines to show */
	-webkit-box-orient: vertical;
}

.title2lineLarge {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
}


/* If the screen size is 1200px wide or more, set the font-size to 80px */

@media (min-width: 1200px) {
	.title2line, .title3line {
		font-size: 14px;
	}
	.title2lineLarge {
		font-size: 20px;
		line-height: 26px;
		/* fallback */
		max-height: 78px;
		/* fallback */
		-webkit-line-clamp: 3;
		/* number of lines to show */
		-webkit-box-orient: vertical;
	}
}


/* If the screen size is smaller than 1200px, set the font-size to 80px */

@media (max-width: 1199.98px) {
	.title2line, .title3line {
		font-size: 12px;
	}
	.title2lineLarge {
		font-size: 16px;
		line-height: 20px;
		/* fallback */
		max-height: 40px;
		/* fallback */
		-webkit-line-clamp: 2;
		/* number of lines to show */
		-webkit-box-orient: vertical;
	}
}