/* 기본 세팅 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: black;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}

/* 페이드 인 효과 */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.screen {
  width: 100vw;
  height: 100vh;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../asset/지하철역.png");
  background-size: cover;        /* 이미지가 화면을 꽉 채우도록 */
  background-position: center;   /* 중앙 정렬 */
  background-repeat: no-repeat;  /* 반복 제거 */
}

/* 텍스트 */
.text {
  position: absolute;
  top: 40px;
  left: 20px;
  width: 1798px;
  color: white;
  font-size: 28px;
  font-weight: 500;
  line-height: 140%;
  display: inline-flex;
  justify-content: left;
  align-items: left;
}