header {
  height: 100vh;
  background: linear-gradient(to right, #ec675b44, #f0904e44);
}

header h2 {
  font-family: serif;
  font-weight: normal;
}

header #movie-container {
  position: relative;
  /* width: 100vw; */
  height: 100vh;
  overflow: hidden;
}

header #movie-container video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@media (max-aspect-ratio: 16/9) {
  header #movie-container video {
    height: 100vh;
  }
}

@media (min-aspect-ratio: 16/9) {
  header #movie-container video {
    width: 100vw;
  }
}

header #movie-container h2 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: max-content;
  color: #fff;
  font-size: 4rem;
  line-height: 9rem;
  text-shadow: 0 0 15px #666;
}

@media screen and (max-width: 900px) {
  header #movie-container h2 {
    font-size: 3rem;
  }
}

.contents h2 {
  text-align: center;
}

#business ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 900px) {
  #business ul {
    width: 90%;
  }
}

#business li {
  position: relative;
  font-size: 1.6rem;
  margin: 1.5rem 0;
  padding: 0;
  /* background-color: #66666699; */
}

#business img {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  box-shadow: .3rem .3rem 20px #66666699;
  border-radius: .3rem;
  opacity: 0.8;
}

#business h3 {
  position: absolute;
  top: 6%;
  left: 4%;
  font-size: 2rem;
  color: #fff;
  text-shadow: .1rem .1rem .2rem #666;
  margin: 0;
}

#about-as {
  color: #fff;
  background: linear-gradient(to right, #ec675b, #f0904e);
  padding-top: 1.2rem;
  padding-bottom: 2rem;
}

#about-as h2 {
  padding-bottom: 2rem;
}

#about-as table {
  border-collapse: collapse;
  width: 90%;
  margin: 0 auto;
  line-height: 1.8rem;
}

#about-as td {
  width: 50%;
  padding: .9rem 1rem 0 1rem;
  border-bottom: 1px solid #ffffff;
}
