body {
    background-color: #f3f3f3;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background-color: #ffffff;
    padding: 40px;
    width: 600px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
    border-radius: 8px;
  }


.card-titulo {
    color: #FF0000;
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
}


.citacao {
    font-family: "IBM Plex Serif", serif;
    font-weight: 200;
    font-style: normal;
    font-size: 18px;
    color: #333333;
    text-align: justify;
    line-height: 1.8;
    text-indent: 40px;
    border-left: 5px solid #FF0000;
    padding-left: 15px; 
    margin-bottom: 25px;
  }

/* Autor */
.autor {
    text-align: right;
    font-style: italic;
    color: #444;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Link do autor */
.autor a {
    color: #1a73e8;
    text-decoration: none;
    text-transform: capitalize;
  
}

.autor a:hover {
    text-decoration: underline;
}

