/* [project]/src/app/about/About.module.css [app-client] (css) */
.About-module__8aBknG__container {
  z-index: 10;
  box-sizing: border-box;
  color: #fff;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  padding: 4rem 2rem;
  display: flex;
  position: relative;
}

.About-module__8aBknG__header {
  text-align: center;
  margin-bottom: 4rem;
}

.About-module__8aBknG__title {
  background: linear-gradient(90deg, #fff, #aaa);
  color: #0000;
  font-size: 3rem;
  font-weight: bold;
  font-family: var(--font-calligraphy), cursive;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: .5rem;
}

.About-module__8aBknG__subtitle {
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.2rem;
  font-family: var(--font-inter), sans-serif;
}

.About-module__8aBknG__heartContainer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 4rem 0;
  display: flex;
}

.About-module__8aBknG__caption {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.5rem;
  font-family: var(--font-ai), sans-serif;
  opacity: .8;
  text-align: center;
}

.About-module__8aBknG__heart {
  fill: red;
  filter: drop-shadow(0 0 20px #f009);
  width: 150px;
  height: 150px;
  animation: 1s cubic-bezier(.215, .61, .355, 1) infinite About-module__8aBknG__beat;
}

@keyframes About-module__8aBknG__beat {
  0% {
    transform: scale(.95);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(.95);
  }
}

.About-module__8aBknG__imageLink {
  cursor: pointer;
  text-decoration: none;
  transition: opacity .3s;
}

.About-module__8aBknG__imageLink:hover .About-module__8aBknG__caption {
  opacity: 1;
  color: #0ff;
  text-shadow: 0 0 10px #00ffff80;
}

.About-module__8aBknG__subCaption {
  color: #888;
  font-size: .8rem;
  font-family: var(--font-inter), sans-serif;
  letter-spacing: .5px;
  margin-top: -1.5rem;
  font-weight: 300;
}

.About-module__8aBknG__signalLink {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .9rem;
  font-family: var(--font-ai), sans-serif;
  opacity: .8;
  border-bottom: 1px solid #ffffff4d;
  margin-top: 1rem;
  padding-bottom: 4px;
  text-decoration: none;
  transition: all .3s;
}

.About-module__8aBknG__signalLink:hover {
  opacity: 1;
  color: #0ff;
  letter-spacing: 3px;
  text-shadow: 0 0 8px #0ff9;
  border-color: #0ff;
}

.About-module__8aBknG__footer {
  margin-top: auto;
  padding-bottom: 2rem;
}

.About-module__8aBknG__backLink {
  color: #888;
  font-family: monospace;
  font-size: .9rem;
  text-decoration: none;
  transition: color .3s;
}

.About-module__8aBknG__backLink:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .About-module__8aBknG__title {
    font-size: 2.5rem;
  }
}

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