body {
  font-family: 'Georgia', serif;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background-color: #fff;
  padding: 40px 60px;
  width: 700px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.card-titulo {
  font-size: 28px;
  color: #4caf50;               /* Verde suave */
  text-align: center;
  text-transform: uppercase;    /* Caixa alta */
  letter-spacing: 3px;          /* Espaçamento entre letras */
  font-weight: 700;
  margin-bottom: 30px;
}

.citacao {
  font-family: 'Times New Roman', serif;
  color: #333;
  text-align: justify;
  text-indent: 20px;
  line-height: 1.8;
  border-left: 6px solid #4caf50;  /* Linha verde à esquerda */
  padding-left: 20px;              /* Espaço após a linha */
  font-size: 18px;
  margin-bottom: 30px;
}

.autor {
  text-align: right;
  font-style: italic;
  color: #555;
  font-size: 16px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.autor a {
  text-decoration: none;
  color: #1e70eb;                 /* Azul do autor */
  font-weight: bold;
  text-transform: capitalize;
}

.autor a:hover {
  text-decoration: underline;
}