* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background-color: black;
}
body > div {
  position: relative;
}
.landing-image {
  width: 100%;
  height: 100vh;
  filter: brightness(0.5);
}
.nav {
  position: absolute;
  top: 0;
  right: 50%;
  left: 46%;
  text-align: center;
}
.nav img {
  width: 100px;
  aspect-ratio: 1/1;
  mix-blend-mode: exclusion;
}
.d-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  top: 15%;
  position: absolute;
  width: 100%;
}
.d-flex > div,
.d-flex > form {
  text-align: center;
  width: 50%;
}
.d-flex > div > div {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  margin: 0 auto;
}
.img-container {
  text-align: center;
}
.title-img {
  width: 500px;
  height: 500px;
}
form h4 {
  color: white;
}
input,
textarea {
  width: 70%;
  padding: 8px 16px;
  margin-bottom: 20px;
  background-color: rgba(128, 128, 128, 0.444);
  border: none;
  color: white;
  border-radius: 8px;
}
input::placeholder,
textarea::placeholder {
  color: white;
}
input:focus,
textarea:focus {
  outline: none;
  border: 3px solid royalblue;
}
input[type="submit"] {
  width: 20%;
}
input[type="submit"]:hover {
  background-color: black;
  color: royalblue;
  transition: 0.3s ease;
  cursor: pointer;
}
form label {
  color: white;
}
#pinContainer {
  display: none;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
  left: 10%;
}
/* Position the "next button" to the right */
.next {
  right: 10%;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
.live-preview-container {
  width: 100%;
  text-align: center;
}
.live-preview {
  padding: 12px;
  background: #fff;
  color: black;
  text-align: center;
  width: 40%;
  position: relative;
  left: 30%;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.live-preview:hover {
  transform: scale(1.1);
}
#videoPage {
  background-color: white;
}
#videoContainer {
  width: 80%;
  margin: 100px auto;
  height: 70vh;
  border: 8px solid black;
}
#videoElement {
  width: 100%;
  height: 100%;
  background-color: #717171;
}

@keyframes fade {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 688px) {
  body {
    overflow-y: unset;
    background-color: black;
  }
  body > div {
    position: unset;
  }
  .nav {
    position: unset;
    text-align: center;
  }
  .landing-image {
    display: none;
  }
  .d-flex {
    display: unset;
  }
  .d-flex > div,
  .d-flex > form {
    text-align: center;
    width: 100%;
  }
  .img-container {
    width: 100%;
  }
  .title-img {
    width: 100%;
    height: 60%;
  }
}
