body {
	padding: 0;
	margin: 0;
	width: 100%;
	background: #FFF;
}

.imagemap {
	position: relative;
	width: 100%;
}

img {
	width: 100%;
	display: block;
}

.container {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
}


/* 기본 설정 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: sans-serif;
  color:#FFF;
}

/* 배경 비디오 */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* 어두운 오버레이 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* 가운데 정렬된 로고 */
.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.logo {
  max-width: 80%;
  height: auto;
}