.hidden {
  display: none;
}
#wrap {
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  text-align: center;
  font-family: "Noto Sans KR";
}
.inner {
  width: 100%;
  max-width: 1920px;
}
.titleLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: black;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
}
.content video {
  position: fixed;
  top: 0;
  right: 0;
  /* bottom: 0; */
  min-width: 100vw;
  min-height: 100vh;
  z-index: -1;
}
.logo {
  height: auto;
}
.text {
  font-size: 28px;
  margin-top: 48px;
  color: #fafafa;
  line-height: 32px;
}
.text span {
  font-weight: 700;
}
.btnWrap {
  margin-top: 50px;
  width: 100%;
}
.btnWrap button {
  width: 100%;
  max-width: 400px;
  height: 70px;
  border-radius: 8px;
  border: none;
  font-size: 28px;
  font-weight: 700;
}

@media (max-device-width: 480px) {
  .logo {
    margin-top: 176px;
  }
  .logo img {
    height: 120px;
  }
  .text {
    margin-top: 31px;
    font-size: 18px;
    line-height: 28px;
  }
  .content {
    padding-inline: 20px;
    background: url('images/main_m.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    justify-content: space-between;
  }
  .btnWrap {
    margin-bottom: 44px;
  }
  .btnWrap button {
    height: 44px;
    font-size: 16px;
    margin-bottom: 0.5rem;
  }
}
