/* Custom overrides on top of app.css: rotating background + Google Font */

body,
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Oswald", sans-serif;
}

.topslider {
  position: relative;
  overflow: hidden;
}

.bg-rotator {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-rotator .bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.bg-rotator .bg-layer.is-active {
  opacity: 1;
}

.bg-rotator::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.topslider .slidcontent {
  position: relative;
  z-index: 2;
}
