/* CSS Document */
body {
	background-color: #242424;
}
footer {
	color: white;
}
footer a {
	color: white;
}
h2 {
	margin: 0px;
}
h3 {
	font-family: 'Noto Sans Thai', sans-serif;
	font-weight: 200;
	font-size: 14px;
}
h4 {
	font-family: 'Noto Sans Thai', sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.exhibition-title {
	padding: 0px 10px;
	font-family: 'Noto Sans Thai', sans-serif;
	font-size: 24px;
	font-weight: 200;
	color: white;
}
.exhibition-container-nimg {
	display: grid;
	padding: 50px 10px;
	grid-template-columns: 100%;
	align-items: center;
	background-color: white;
}
.exhibition-container-wimg {
	display: grid;
	grid-template-columns: 50% 50%;
	align-items: center;
	background-color: white;
}
.exhibition-poster {
	width: auto;
	aspect-ratio: 3 / 4;
	position: relative;
	background-position: center;
	background-repeat: repeat;
	background-size: cover;
	overflow: hidden;
	box-sizing: inherit;
}
.exhibition-info {
	display: grid;
	padding: 20px;
	height: 100%;
	text-align: center;
	align-items: stretch;
	align-content: center;
}
.exhibition-info-title {
	font-family: 'Noto Sans Thai', sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
}
.exhibition-info-description {
	font-family: 'Noto Sans Thai', sans-serif;
	font-size: 14px;
	font-weight: 200;
	text-align: center;
}
@media only screen and (max-width: 2048px) {}
@media only screen and (max-width: 1920px) {}
@media only screen and (max-width: 768px) {}
@media only screen and (max-width: 500px) {
	.exhibition-container-nimg {
		padding: 20px 10px;
		grid-template-columns: 100%;
	}
	.exhibition-container-wimg {
		grid-template-columns: 100%;
	}
	.exhibition-info-title {
		font-size: 13px;
		font-weight: 400;
	}
	.exhibition-info-description {
		font-size: 13px;
		font-weight: 200;
	}
}