* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
}
#videoTitle {
  padding-top: 2.5%;
  padding-bottom: 6.75%;
}
#videoPlayer {
  z-index: 1;
}
#videoPlayer2 {
  transform: rotateY(180deg);
}
.module {
  margin: 5px 10px;
  height: 80vh;
  width: 90%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.videos {
  margin-top: -5%;
  margin-left: 10%;
  display: flex;
  justify-content: center;
  text-align: center;
}
#videoTitle {
  margin-left: 10%;
  text-align: center;
}
#closeModule {
  font-size: 1.35rem;
  color: rgb(30, 197, 248);
}
.hidden {
  display: none;
}
section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  pointer-events: none;
}

.side {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("Images/faces.jpg");
  background-size: cover;
}

.side1 {
  clip-path: polygon(
    0% 0%,
    68% 0%,
    33% 15%,
    68% 24%,
    35% 36%,
    68% 44%,
    35% 54%,
    68% 64%,
    36% 74%,
    68% 85%,
    36% 89%,
    69% 100%,
    0 100%
  );
}

.side2 {
  clip-path: polygon(
    100% 0,
    68% 0%,
    33% 15%,
    68% 24%,
    35% 36%,
    68% 44%,
    35% 54%,
    68% 64%,
    36% 74%,
    68% 85%,
    36% 89%,
    69% 100%,
    100% 100%
  );
}

.content {
  background: #000;
  color: #fff;
  padding: 100px;
  padding-top: 150vh;
}

.content h1 {
  position: relative;
  font-size: 2.5rem;
}

.content p {
  position: relative;
  font-size: 2rem;
}

/* card */
.card {
  text-align: center;
  background-color: rgb(197, 194, 194);
  font-size: 1.5rem;
  color: black;
  border-radius: 5px;
  margin-bottom: 2.5%;
  padding: 25px;
}
.card h2 {
  color: orangered;
}
.card a {
  text-decoration: none;
  color: rgb(233, 52, 101);
}
.card a:hover {
  color: rgb(43, 131, 218);
}

hr {
  height: 3px;
  background-color: orangered;
  border: none;
  margin-bottom: 2%;
}
#cells {
  text-decoration: none;
  color: rgb(43, 131, 218);
}
#cells:hover {
  color: orangered;
}
