* {
  margin: 0;
  padding: 0;
}

.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%;
  min-height: 100%;
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;
  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay {
  position: absolute;
  bottom: 13%;
  left: 0;
  right: 0;
  width: 95%;
  max-width: 45em;
  margin: 0 auto;
  box-sizing: border-box;
  line-height: 1.5;
  text-align: center;
}

.overlay p {
  color: #fff;
  font-weight: bold;
  text-align: left;
  padding-left: 23px;
}

body {
  background-color: #201f24;
  font-family: "Nunito", sans-serif;
}

.button {
  text-align: center;
  display: block;
  margin-top: 22px;
  text-decoration: none;
}

.btn {
  background: #000000;
  color: #07dce7;
  padding: 10px 50px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 25px;
  border-left: 4px solid #00ffea;
  border-right: 4px solid #fd014e;
}

.fon_logo {
  background: -moz-radial-gradient(
    center,
    ellipse cover,
    rgba(34, 0, 0, 0.7) 0%,
    rgba(229, 229, 229, 0) 60%
  );
  /* FF3.6-15 */
  background: -webkit-radial-gradient(
    center,
    ellipse cover,
    rgba(34, 0, 0, 0.7) 0%,
    rgba(229, 229, 229, 0) 60%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(
    ellipse at center,
    rgba(34, 0, 0, 0.7) 0%,
    rgba(229, 229, 229, 0) 60%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

@media (max-width: 768px) {
  .logo img {
    width: 95%;
  }
}

.img-bg {
  background: url(../rhapsody.jpg);
  -webkit-background-size: contain;
  background-size: contain;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.img-bg:after {
  content: "";
  position: absolute;
  background: linear-gradient(
      rgba(255, 255, 255, 0.03) 0%,
      rgba(0, 0, 0, 0.71) 100%
    )
    no-repeat 50% 50% / 100% 100%;
  width: 100%;
  height: 100%;
}

.logo-top {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  text-align: center;
  opacity: 0.8;
}
