/* CARTA EM TELA CHEIA */
.show-letter .letter {
  position: fixed;
  top: 10vh;
  left: 10vw;

  width: 80vw;
  height: 80vh;

  padding: 40px;

  display: flex;
  flex-direction: column;

  z-index: 20;
  transition: all 0.8s;
}
/* Conteúdo */
.letter-content {
  font-family: "Great Vibes", cursive;
  font-size: 26px;
  color: #3b2a1a;

  flex: 1;
  overflow-y: auto;

  padding-right: 10px;

  scrollbar-width: none;

  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.small-text {
  margin-top: 15px;
  font-size: 0.85em;
  line-height: 1.5;
  color: rgb(57, 125, 165);
}

.letter-content p {
  margin-bottom: 25px;
}

.letter-content::-webkit-scrollbar {
  display: none;
}

.letter-content::-webkit-scrollbar {
  display: none;
}

/* aparece quando carta terminar animação */
.show-letter .letter-content {
  opacity: 1;
  transform: translateY(0);
}

/* espaço interno da carta */
.open .words {
  display: none;
}

@media (max-width: 600px) {
  .letter-content {
    font-size: 22px;
  }

  .letter-content h1 {
    font-size: 32px;
  }
}
