.video-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media (min-width: 600px) {
  .video-container {
    height: 100vh;
  }
}

video {
  object-fit: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  filter: brightness(50%);
}

.callout {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
  z-index: 10;
  font-size: 24px;
  font-family: 'Shippori Mincho B1', serif;
  color: #FFFFFF;
}
@media (max-width: 750px) {
	.callout {
		font-size: 16px;
	}
}

img {
  max-width: 75%;
}