@charset "UTF-8";

#main {
  display: flex;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}
#main .btn-area {
  position: fixed;
  bottom: 100px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#main button,
#main a {
  font-weight: 500;
  box-sizing: border-box;
  border-radius: 1000px;
  display: flex;
  align-items: center;
}
#main button {
  color: #fff;
  font-size: 16px;
  line-height: normal;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 6px;
}
#main button.off {
  background: rgba(34, 34, 34, 0.3);
}
#main a {
  color: #222;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.54px;
  padding: 10px 20px;
  background: var(--point-color);
  gap: 4px;
}
#main video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
#main video.vh {
  width: auto;
  /* height: 100vh; */
}
@media all and (max-width: 1625px) {
  #main video {
    width: 116%;
  }
}
@media all and (max-width: 1400px) {
  #main video {
    width: 136%;
  }
}
@media all and (max-width: 1200px) {
  #main video {
    width: 163%;
  }
}
@media all and (max-width: 1000px) {
  #main video {
    width: 100%;
  }
}
@media all and (max-width: 690px) {
  #main video {
    width: 137%;
  }
}
@media all and (max-width: 500px) {
  #fixed {
    display: none;
  }

  #main video {
    width: 125%;
  }
  #main .btn-area {
    bottom: 80px;
  }
  #main a {
    font-size: 14px;
    letter-spacing: -0.42px;
    padding: 12px 16px;
  }
}
