body {
  background: #00091B;
  color: #fff;
}


@keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 50%; opacity: 1;}
  
}

/* 등장 애니메이션 (아래로 이동은 없음, 그냥 서서히 나타남) */
@keyframes fadeInOnly {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 기본: 안 보이게 시작 */
.fade {
  opacity: 0;
  animation: fadeInOnly 1400ms ease forwards;
}

/* 순서/시간차 */
.f1 { animation-delay: 0ms; }
.f2 { animation-delay: 500ms; }
.f3 { animation-delay: 1000ms; }
/* .f4 { animation-delay: 850ms; } */
.f5 { animation-delay: 1500ms; }


@-webkit-keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 50%; opacity: 1;}
  
}

.wrapper {
  /* position: absolute; */
  text-align: center;          /* wrapper 기본은 left */
  width: min(92vw, 900px); /* 화면에 맞게 줄어듦 */
  /* left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%); */
/*  animation: fadeIn 1000ms ease;
  -webkit-animation: fadeIn 3000ms ease; */

}

h1 {

  display: inline-block;     /* 또는 width: fit-content; */
  text-align: left;          /* wrapper 기본은 left */

  font-size: clamp(26px, 7vw, 44px);
  line-height: 1.05;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.dot {
  color: #4FEBFE; 
}

p {
  font-size: clamp(12px, 3.6vw, 16px);
  margin: clamp(24px, 6vw, 56px) 0 clamp(6px, 2vw, 12px);
  font-family: 'Muli', sans-serif; 
}

.refinement {
  margin-top: 80px;   /* 위 여백 크게 */
  margin-bottom: 1px; /* 아래 여백 작게 */
}

.icons {
  text-align: center;
  margin-top: clamp(18px, 16vw, 120px);
}

.icons i {
  color: #00091B;
  background: #fff;
  height: 15px;
  width: 15px;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
}

.icons i:hover, .icons i:active {
  color: #fff;
  background: none;
  cursor: pointer !important;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  text-decoration: none;
  margin-top: 1000px;   /* 위 여백 크게 */
}

.logo {
  display: block;
  width: min(92vw, 860px);
  height: auto;
  margin: 0 auto clamp(18px, 4vw, 36px);
}

.gp {
  display: block;
  width: clamp(72px, 22vw, 150px);
  height: auto;
  margin: 0 auto clamp(14px, 4vw, 24px);
}

