body {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Estilo geral do card */
.card {
    background-color: #ffffff;
    width: 400px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Título do card */
.card-titulo {
    text-transform: uppercase;
    color: #0077cc;
    font-size: 1.6em;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 20px;
}

/* Citação */
.citacao {
    font-family: "Georgia", serif;
    text-align: justify;
    text-indent: 30px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

/* Autor */
.autor {
    text-align: right;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    color: #555;
    margin-bottom: 10px;
}

/* Link opcional */
.link-autor {
    display: block;
    text-align: right;
    color: #0077cc;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: bold;
    transition: color 0.3s ease;
}

.link-autor:hover {
    color: #005999;
}
