.image-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.image-container img {
    width: 30%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.image-container img:hover {
    transform: scale(1.1);
}

.card-content{
    margin-right: auto;
    margin-left: auto;
    width: 75%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.verse-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}
.verse-reference {
    font-size: 1.3em;
    font-weight: bold;
    color: #555;
}
.verse-text {
    font-size: 1em;
    margin-top: 20px;
}
 .entry-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Styles du contenu */
.entry-content {
    line-height: 1.6;
    color: #666;
}