* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  background-color: #0d0d0d;
  font-family: 'Quicksand', sans-serif;
  color: #d4c9b8;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 100vh;
  padding: 60px 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.content.visible {
  opacity: 1;
  transform: translateY(0);
}

.content p {
  font-size: 1.05rem;
  line-height: 2;
  color: #c9bfaf;
  margin-bottom: 1.6em;
  font-weight: 400;
  text-align: justify;
  hyphens: auto;
  letter-spacing: 0.02em;
}

.content p:last-child {
  margin-bottom: 0;
}

.authors {
  position: fixed;
  bottom: 28px;
  right: 40px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.2s ease 0.6s, transform 1.2s ease 0.6s;
}

.authors.visible {
  opacity: 1;
  transform: translateY(0);
}

.authors span {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  color: #e8ddd0;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  text-shadow: 0 0 12px rgba(232, 221, 208, 0.45);
}

@media (max-width: 900px) {
  html, body {
    overflow: auto;
    height: auto;
  }

  body {
    align-items: flex-start;
    height: auto;
    min-height: 100vh;
  }

  .wrapper {
    height: auto;
    min-height: 100vh;
    padding: 60px 24px 80px;
    justify-content: flex-start;
    padding-top: 70px;
  }

  .content p {
    font-size: 0.98rem;
    line-height: 1.9;
    text-align: left;
  }

  .authors {
    position: static;
    display: block;
    text-align: right;
    margin-top: 48px;
    padding-bottom: 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.2s ease 0.6s, transform 1.2s ease 0.6s;
  }

  .authors.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .authors span {
    font-size: 0.82rem;
    font-weight: 700;
    color: #e8ddd0;
    text-shadow: 0 0 10px rgba(232, 221, 208, 0.4);
  }
}
