.centered-text {
  text-align: center;
  font-family: 'Abhaya Libre', serif;
  font-size: 30px;
  padding-top: 10px;
  padding-bottom: 20px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.centered-text span {
  color: rgb(212, 175, 54);
  background-color: rgba(68, 62, 62, 0);
  margin: 0 10px;
  text-align: center;
}

.index-paragraph {
  font-family: 'Abhaya Libre', serif;
  letter-spacing: 0px;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  max-height: 100%;
  max-width: 100%;
  height: 100%;
  overflow: visible;
}

.slide-in {
  opacity: 0;
  transform: translateX(50px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  will-change: transform, opacity;
}

.from-left {
  transform: translateX(-50px);
}

.from-left.active, .from-right.active {
  opacity: 1;
  transform: translateX(0px);
}

.from-bottom {
  transform: translateY(50px);
}

.from-top {
  transform: translateY(-50px);
}

.from-bottom.active, .from-top.active {
  opacity: 1;
  transform: translateY(0);
}

