@import url("https://fonts.googleapis.com/css2?family=Bungee+Shade&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital@1&display=swap");

body div {
  border: solid red 0px;
}

p {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}

/* Carousel*/

.carousel-inner video {
  width: 100%;
  /* Set width to 100% */
  margin: auto;
}

footer {
  text-align: center;
}

body {
  background-color: #26264e;
  color: black;
}

.title {
  font-family: "Bungee shade", cursive;
}

/* Additionnal styles */
.video-image {
  max-width: 80%;
  max-height: 80%;
  cursor: pointer;
}

.arrow {
  cursor: pointer;
}
.slide-arrow {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  height: 0%;
  width: 15%;
  cursor: pointer;
  opacity: 0.5;
  color: white;
}

.slide-arrow:hover {
  opacity: 1;
}

.slide-arrow:after {
  content: "\003c";
  text-align: center;
  display: block;
  height: 10%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 4em;
}

.slide-arrow.right:after {
  content: "\003e";
}

.slide-arrow.right {
  left: auto;
  right: 0;
}

@media screen and (max-width: 1180px) {
  p {
    font-size: 10px;
  }
  iframe {
    width: 60%;
    height: 40vh;
    flex: auto;
    justify-content: center;
  }
  img {
    object-fit: contain;
  }

}

@media (orientation: landscape) and (max-device-width: 1180px) {
  .side-image {
    object-fit: contain;
  }
  iframe {
    height: 75vh;
  }
}

@media (orientation: portrait) and (max-device-width: 1180px) {
  .main-image {
    padding-top: 25%;
  }
}
/* modal */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Modal Content (image) */
.modal-video-content {
  margin: auto;
  display: block;
}

/* Add Animation */

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}
/* modal */
