.tweet-container {
    display: flex;
    flex-direction: column;
    border: 1px solid #1c1c1c;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}
.tweet-user-info{
    margin-left: 20px;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.tweet-user-profile{
    width: 30px;
    height: 30px;
    background-color: white;
    border: 1px solid #979797;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
}

.tweet-user-name-container {
    color: white;
    margin-left: 8px;
}

.tweet-user-fullname {
    font-size: 15px;
}

.tweet-user-username {
    font-size: 10px;
}

.tweet-images-container {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    height: 300px;
    border: 1px solid #1c1c1c;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
}

.tweet-video-container {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    height: 300px;
    border: 1px solid #1c1c1c;
    border-radius: 20px;
    overflow: hidden;
}

.tweet-video-container video {
    width: 100%;
    height: 100%;
}

.tweet-text-container {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    font-size: 15px;
    color: rgba(255,255,255,0.74);
}
.tweet-image{
    /* background-image: url(https://images.unsplash.com/photo-1593642532842-98d0fd5ebc1a?ixid=MXwxMjA3fDF8MHxlZGl0b3JpYWwtZmVlZHwxN3x8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60); */
    flex-basis: 50%;
    background-size: cover;
    background-position :center;
    flex-grow: 1;
    
}
.tweet-date-container{
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 20px;
    color: #47525d;
}

.tweet-welcome-message {
    color: white;
    text-align: center;
}
.tweet-welcome-message h5 {
    margin-bottom: 0;
}

.tweet-welcome-message p {
    font-size: 10px;
}