body {
    background: #111;
    background-image: url('Sprite-0002.png');
    background-size: cover;
    background-repeat: repeat-x;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
}

.quotes-board {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 32px;
}

.quote-card {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.book-cover {
    width: 70px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.quote-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.quote {
    font-style: italic;
}

.author {
    font-weight: bold;
    text-align: right;
}

.livro {
    font-weight: bold;
    text-align: center;
    display: block;
}

