/* END of HomePage Video */

/* Projects Page */

.videoContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.videoSquare {
  max-width: 420px;
  padding: 1.5rem;
  background-color: white;
  border: 2px solid var(--black);
  box-shadow: -6px 6px var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.videoPortrait {
  max-width: 320px;
  padding: 1.5rem;
  background-color: white;
  border: 2px solid var(--black);
  box-shadow: -6px 6px var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.videoSquare video {
  aspect-ratio: 1/1;
}

.videoPortrait video {
  aspect-ratio: 9/16;
}

.project video {
  width: 100%;
  height: auto;
  border: 2px solid var(--black);
}

.videoControls {
  display: flex;
  flex-direction: row;
  border: 2px solid var(--black);
  box-shadow: -6px 6px var(--black);
  background-color: white;
  padding: 0 2rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 320px;
  justify-content: space-between;
  margin-left: 6px;
}

.videoControllers {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.videoControllersVolume {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.videoIcon {
  height: 36px;
  padding: 1.2rem 2rem 1rem 0;
}

#videoRestart .videoIcon,
#videoVolume .videoIcon {
  max-height: 32px;
}

.videoControllersVolume .videoIcon {
  padding-right: 0;
}

@media screen and (max-width: 1024px) {
  .videoControls {
    width: 80%;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
  .videoContainer {
    width: 90%;
  }
}

/* END of Projects page */
