@charset 'UTF-8';

.slogan-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  color: #FFFFFF;
  margin: 50px 0;
  letter-spacing: 10px;
  font-family: "Libre Baskerville", serif;
  background-color: black;
}

.slogan {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Libre Baskerville", serif;
  opacity: 0;
  transform: translateY(30px);
  color: white;
  text-shadow:
    0px 0px 6px rgba(255, 255, 255, 0.8),
    3px 3px 8px rgba(0, 0, 0, 0.6);
  display: inline-block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slogan.visible {
  animation: fadeInUp 1.5s ease-out forwards;
}

.slogan:nth-child(1) {
  animation-delay: 0.1s;
}

.slogan:nth-child(2) {
  animation-delay: 0.2s;
}

.slogan:nth-child(3) {
  animation-delay: 0.3s;
}

.slogan:nth-child(4) {
  animation-delay: 0.4s;
}

.slogan:nth-child(5) {
  animation-delay: 0.5s;
}

.slogan:nth-child(6) {
  animation-delay: 0.6s;
}

.slogan:nth-child(7) {
  animation-delay: 0.7s;
}

.slogan:nth-child(8) {
  animation-delay: 0.8s;
}

.slogan:nth-child(9) {
  animation-delay: 0.9s;
}

.slogan:nth-child(10) {
  animation-delay: 1.0s;
}

.slogan:nth-child(11) {
  animation-delay: 1.1s;
}

.slogan:nth-child(12) {
  animation-delay: 1.2s;
}


.aboutWrap {
  position: relative;
}

.aboutWrap a {
  position: absolute;
  top: 68%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 20px;
  border: solid white 1px;
  padding: 7px 7px 7px 10px;
  color: white;
  text-decoration: none;
  letter-spacing: 8px;
}

.aboutWrap a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.aboutBox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-titleBox {
  position: absolute;
  text-align: center;
  color: white;
  font-weight: bold;
  font-family: "Georgia";
  font-size: 20px;
  width: 100%;
}

.line-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.animated-line {
  height: 2px;
  background-color: white;
  width: 100vw;
  transform: scaleX(0);
  transition: transform 1s ease-in-out;
}

.about-title {
  font-size: 70px;
  text-transform: uppercase;
  margin: 0 20px;
  font-weight: lighter;
}

.about-titleBox p {
  font-size: 30px;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 8px;
  font-weight: bold;
}


.line-left {
  transform-origin: left;
}

.line-right {
  transform-origin: right;
}

@media screen and (max-width: 960px) {
  .aboutWrap a {
    top: 75%;
  }
}

@media screen and (max-width: 795px) {
  .aboutWrap a {
    top: 80%;
    font-size: 14px;
  }

  .about-title {
    font-size: 40px;
    text-transform: uppercase;
    margin: 0 20px;
  }

  .about-titleBox p {
    font-size: 20px;
    letter-spacing: 8px;
  }

  .slogan {
    font-size: 2.0rem;
    letter-spacing: 5px;
    text-shadow:
      0px 0px 5px rgba(255, 255, 255, 0.7),
      3px 3px 7px rgba(0, 0, 0, 0.5);
  }

}

@media screen and (max-width: 480px) {
  .aboutWrap a {
    top: 72%;
    font-size: 8px;
    letter-spacing: 4px;
    padding: 6px 1px 6px 5px;
  }

  .about-title {
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 20px;
  }

  .about-titleBox p {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .slogan {
    font-size: 1.4rem;
    letter-spacing: 4px;
    text-shadow:
      0px 0px 4px rgba(255, 255, 255, 0.6),
      2px 2px 6px rgba(0, 0, 0, 0.5);
  }

}



@media screen and (max-width: 400px) {
  .aboutWrap a {
    font-size: 9px;
    top: 75%;
    padding: 5px 1px 5px 5px;
    letter-spacing: 2px;
  }

  .about-title {
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 20px;
  }

  .about-titleBox p {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .slogan-container {
    font-size: 1.5rem;
    margin: 20px 0;
    letter-spacing: 10px;
  }

  .slogan {
    font-size: 1.1rem;
  }

}

@media screen and (max-width: 360px) {
  .slogan {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
}