body {
  margin: 0;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 8%;
  z-index: 2;
  color: #fff;
  transform: translateY(-50%);
}

.hero__label {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.2em;
}

.hero__title {
  margin: 0 0 24px;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.15;
}

.hero__text {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.8;
}

.hero__button {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

.hero__button:hover {
  background-color: #fff;
  color: #111;
}

.contents {
  padding: 80px 8%;
}
