body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  height: 100vh;
  font-family: arial;
}

.video {
  width: 80%;
  position: relative;
}

.video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-container::after {
  padding-top: 56.25%;
  display: block;
  content: '';
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a {
  display: inline-block;
  background: #fff763;
  border-radius: 6px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px;
}

a:hover {
  background: #000;
  color: #fff763;
}

.video-ended {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  -webkit-transition: all .45s linear;
  transition: all .45s linear;
  pointer-events: none;
}

.video-ended.active {
  pointer-events: all;
  opacity: 1;
}

.video-ended a {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video-ended a:hover {
  background: #fff;
}
/*# sourceMappingURL=style.css.map */