* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  background-color: #7a1f1f;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff;
}

.about {
  max-width: 640px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 6rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.back-link {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #ffffff;
}

.about-title {
  font-weight: 900;
  font-size: 1.75rem;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.rotating-word {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.6em;
  min-width: 2.6em;
  vertical-align: bottom;
  overflow: hidden;
}

.rotating-word .word {
  position: absolute;
  left: 50%;
  top: 50%;
  font-weight: 700;
  color: #ffffff;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 0.4em));
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.rotating-word .word.is-active {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.instagram-link {
  color: #ffffff;
  display: inline-flex;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.instagram-link:hover {
  opacity: 1;
  transform: scale(1.05);
}

.email-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.email-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}
