/* The hero image for this page */
.hero {
  background-image: url('../images/hanger3.jpg');
}

.hero h1 {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: min(25vw, 35vh);
  width: 40vw;
  background-color: rgba(17, 16, 16, 0.8);
  padding: 2rem;
  font-size: clamp(1.4rem, 6vw, 7rem);
  line-height: 100%;
  font-weight: 800;
  font-family: Palatino;
  color: #fff;
  text-align: center;
  text-shadow: 0rem .25rem 3.5625rem rgba(128, 128, 128, 0.6);
}

.project-container {
  margin-top: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-container h2{
  margin: 1vw;
  position: relative;
  font-size: clamp(2rem, 5vw, 8rem);
  line-height: 100%;
  font-weight: 800;
  font-family: Palatino;
  color: #fff;
  text-align: center;
  display: inline-block;
  text-shadow: 0rem .25rem 3.5625rem rgba(128, 128, 128, 0.6);
}

.project-container p{
  margin: 3vw;
  width: 74vw;
  position: relative;
  font-size: clamp(1rem, 1.5vw, 8rem);
  line-height: 100%;
  font-weight: 600;
  font-family: Palatino;
  color: #c2c2c2;
  text-align: left;
  text-shadow: 0rem .25rem 3.5625rem rgba(128, 128, 128, 0.6);
}

.swiper {
  width: 75vw;
  
}

.swiper img {
  width: 100%;
}

/* Handles styling in Mobile or windows narrower than 700px */
@media (max-width: 700px) {
  .hero h1 {
    padding: 1rem;
  }
}