.resenia{
    display: flex; 
    justify-content: center;
    align-items: center;
    margin: 0;
    margin-top: 8em;
    margin-bottom: 8em;
}

.carousel {

    width: 70%;
    overflow: hidden;
    position: absolute;

}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(100% * 6 / 3);
    /* 6 cards / 3 visible */
}

.tweet-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    /* Adjust width as needed */
    margin: 10px;
}

.profile {
    display: flex;
    align-items: center;
}

.profile-picture {
    background-color: yellow;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: black;
}

.profile-info {
    margin-left: 10px;
}

.profile-info h3 {
    margin: 0;
    font-size: 18px;
}

.profile-info p {
    margin: 0;
    color: gray;
}

.tweet-content {
    margin-top: 15px;
}

.tweet-content p {
    margin: 0;
}

.tweet-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: gray;
}
.gradient-custom {
    /* fallback for old browsers */
    background: #f6d365;
    
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right bottom, rgba(246, 211, 101, 1), rgba(253, 160, 133, 1));
    
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right bottom, rgba(246, 211, 101, 1), rgba(253, 160, 133, 1))
    }

    .header {
        display: flex;
        align-items: center;
        color: #007bff;
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .header i {
        margin-right: 10px;
    }

    .news-item {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        margin: 10px;
        padding: 10px;
        transition: transform 0.3s;
    }

    .news-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .news-title {
        font-size: 1.5em;
        margin: 10px 0;
    }

    .news-description {
        color: #666;
    }
