.container {
  position: relative;
  /* max-width: 800px; */
  margin: 0 auto;
}

.container img {vertical-align: middle;}

.container .transparency-content {
	position: absolute;
	/* top: 0;
	left: 0;
	bottom: 0; */ 

	font-size: 36px;
	color: white;
	/* color: #ffffff; */
	/* color: #fff; */
	
	z-index: 1;

	justify-content: center;
	text-align: center;
	width: 100%;
	height: 100%;

	/* background: rgb(0, 0, 0); */ /* Fallback color */
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.2);
	/* background: rgb(255, 255, 255, 0.0); */
	/* background: rgba(0, 0, 0, 0.0); */ /* Black background with 0.5 opacity */
	
	display: flex; /* 화면 에서 세로로 중심 */
	flex-direction: column;

	padding: 20px;
	/* padding: 3rem 4rem; */
}

.container .content2 {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}