/* Estilo geral da página */
body {
    background-color: #f0f0f5;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Card principal */
.card {
    background-color: #fff;
    width: 400px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Título do card */
.card-titulo {
    font-size: 1.4em;
    text-transform: uppercase;
    color: #003366;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 20px;
}

/* Bloco de citação */
.citacao {
    font-family: "Georgia", serif;
    text-align: justify;
    text-indent: 25px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

/* Autor */
.autor {
    text-align: right;
    font-style: italic;
    color: #444;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Link dentro do autor */
.autor a {
    color: #003366;
    text-decoration: none;
    text-transform: capitalize;
}

.autor a:hover {
    text-decoration: underline;
}
