@charset "UTF-8";

@font-face {
  font-family: "pretendard";
  src: url("fonts/Montserrat-Black.eot");
  src: local("☺"), url("../fonts/Pretendard-Bold.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "pretendard";
  src: url("fonts/Montserrat-Bold.eot");
  src: local("☺"), url("../fonts/Pretendard-SemiBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "pretendard";
  src: url("fonts/Montserrat-Regular.eot");
  src: local("☺"), url("../fonts/Pretendard-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "pretendard";
  src: url("fonts/Montserrat-Light.eot");
  src: local("☺"), url("../fonts/Pretendard-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

body {
  max-width: 1200px;
  background-color: #222222;
  font-size: 14px;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  /* 배경 이미지 설정 */
  background-image: url('../img/background.png');
  /* 이미지 파일 경로 설정 */
  background-size: cover;
  /* 화면에 꽉 채우도록 배경 이미지 크기 조정 */
  background-position: center;
  /* 배경 이미지를 가운데 정렬 */
  background-attachment: fixed;
  /* 스크롤 시 배경 이미지가 고정됨 */
  background-repeat: no-repeat;
  /* 배경 이미지 반복 없음 */
}

.intro {
  position: relative;
  max-width: 75%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

.intro img.poster {
  margin: 20px 0;
}

.intro--banner {
  margin: 20px 0;
}

.intro--banner h2.main_title {
  font-size: 1.3em;
  font-weight: 500;
  color: #ccc;
}

.intro--banner h2.sub_title {
  word-break: keep-all;
  margin: 20px 0;
  color: #ffffff;
  font-size: 1.7em;
  font-weight: 700;
}

.intro--banner h2.warning_title {
  position: relative;
  margin-top: 15%;
  font-size: 3em;
  font-weight: 700;
}

.intro--banner .text_box {
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}

.intro--banner p.main_text {
  word-break: keep-all;
  margin: 15px 0;
}

.intro--banner p.issue_text {
  color: #ccc;
  font-size: 14px;
  font-weight: 100;
}

.intro--banner img.logo {
  width: 300px;
  text-align: center;
  margin: 0 auto;
}

.intro--banner .warning_box {
  position: relative;
  top: 0;
  left: 0;
}

.intro--banner img.warning_bg {
  width: 800px;
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.list_line {
  max-width: 1200px;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 22px;
}

.list_line::before, .list_line::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ffffff;
}

.list_line:not(:empty)::before {
  margin-right: 10px;
}
.list_line:not(:empty)::after {
  margin-left: 10px;
}

.intro .poll_box{
  padding: 20px 0;
}

.image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 이미지 반응형 */
.responsive-image {
  margin: 0 5px;
  max-width: 100%;
  height: auto;
}

footer {
  margin-top: auto;
  text-align: center;
}

.sns-link {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:20px;
  flex-wrap: wrap;
}

.sns-link img {
  cursor: pointer;
  width: 30px;
  height: 30px;
  object-fit: cover;
}

footer p {
  color: #aaa;
  font-size: 14px;
  padding: 10px 0;
  padding-bottom: 100px;
}


/* 영상 */
.video-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding-bottom: 56.25%; /* 16:9 비율의 비디오 */
    justify-content: center; /* 영상을 수평으로 중앙 정렬 */
    margin: 0 auto; /* 가운데 정렬을 위해 추가 */
}

.video-wrapper {
    position: relative;
    width: 100%; /* 한 줄에 두 개의 영상이 있도록 50%로 설정 */
    padding-bottom: 56.25%; /* 16:9 비율의 비디오 */
    overflow: hidden;
    margin-bottom: 20px; /* 영상 사이의 간격을 조정 */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .video-wrapper {
        width: 100%; /* 데스크탑 화면에서 한 줄에 한 개의 영상만 나오도록 전체 너비로 설정 */
    }
}

/* 태블릿 */
@media (max-width: 768px) {
  .intro--banner img.logo {
    margin-top: 50px;
  }

}

/* 모바일 */
@media (max-width: 576px) {

}