/* Structure */
#showtime {
	background-color: var(--c100);
	min-height: 50rem;
	padding-top: 7rem;
	padding-bottom: 7rem;
	position: relative;
}

/* Background */
#showtime .background {
	opacity: .6;
}

/* Content */
#showtime .content {
	row-gap: 7rem;
	position: relative;
}

#showtime .title {
	font-size: min(7rem, 15vw);
	font-weight: 700;
	letter-spacing: .3em;
	margin-right: -.3em;
}

#showtime .title .empty-text {
	color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--text-color);

}

#showtime p {
	max-width: 800px;
	font-size: min(1rem, 4vw);
	letter-spacing: .1em;
	text-align: center;
}

#showtime p.big {
	opacity: 1;
	color: #fff;
	text-shadow: 0 2px .5rem #000;
	font-weight: 600;
	font-size: min(1.25rem, 6vw);
	line-height: 1.5;
}

#showtime .sbtn {
	padding-inline: 2rem;
}

/* Responsive */
@media (max-width: 480px) {

	#showtime .content {
		row-gap: 5rem; 
	}

}