.container-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content1 {
  position: relative;
  width: 100vw;
  font-family: Lexend;
}

.content1 img {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  object-fit: cover;
}

.content1 h4 {
  size: 30px;
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
}

.img-overlay h1 {
  padding: 15px;
  background-image: linear-gradient(#9142ea, #b879ff);
  color: #000;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.img-overlay h1:hover {
  background-image: linear-gradient(#b879ff, #b879ff);
  color: #fff;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.content2 {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url(../media/chamber.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  color: white;
  justify-content: center;
}

.content2 video {
  position: relative;
  width: 450px;
  z-index: 5;
  margin-left: 5%;
}

.content2 .jean-name {
  font-family: Rubik;
  font-size: 60px;
  background: -webkit-linear-gradient(#f44a86, #ffb887);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 5;
  margin-left: 5%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  width: 450px;
}

.content2 h4 {
  z-index: 5;
  margin-left: 5%;
  font-family: Lexend;
  width: 450px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.1)
  );
  color: white;
  display: flex;
  justify-content: center;
  z-index: 4;
}

.video-overlay h1 {
  z-index: 5;
  font-family: Sansation;
  margin-top: 80px;
  font-size: 50px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .content1 h4 {
    font-size: 15px;
  }

  .content2 {
    align-items: center;
  }

  .content2 video {
    width: 300px;
    margin-left: 0;
  }

  .content2 .jean-name {
    margin-left: 0;
    width: 300px;
  }

  .content2 h4 {
    margin-left: 0;
    width: 300px;
  }
}
