/* IWTO: ImageWithTextOverlay (component) */
/* Uses flex grid to overlay text because using the position method */
/* collides with the postion:fixed for the navbar */
.iwto-outer-div {
  display: grid;
  place-items: center;
  /*not working? -webkit-animation: feature-text-anim 0.75s ease-in-out;
  animation: feature-text-anim 0.75s ease-in-out;*/
}

.iwto-image-div {
  grid-area: 1/1;
  /* styling for the image */
}
.iwto-image-div img {
  /* img-fluid is max-width: 100% and a specified height */
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 50% 50%; /* default - set the <img style= for each page  */
}

.iwto-text-div {
  grid-area: 1/1;
  color: white;
  width: 75%;
  text-align: center;
  margin-bottom: 2rem;
}

/* Used in blog article behind title */
.iwto-text-outline-blur-div {
  background: rgba(0, 0, 0, 0.2);
  text-shadow: 2px 2px black;
}

/* Assumed to be single line, no wrap */
.iwto-text-1 {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 2rem;
  font-family: "EB Garamond";
  font-style: italic;
}

/* May wrap */
.iwto-text-2 {
  text-wrap: wrap;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 4px;
  font-size: 4vw;
  font-family: Montserrat;
  line-height: 1.2em;
  font-style: normal;
  margin-bottom: 0;
  transform: scaleY(1.1);
}

/*# sourceMappingURL=ImageWithTextOverlay.css.map */
