#twitter-timeline {
    margin-top: 1rem;
}


#twitter-timeline ul {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .2);
    border-radius: 4px;
    overflow-y: scroll;
    max-height: 655px;
    list-style: none;
    padding-left: 0;
}

#twitter-timeline .twitter-header{
    padding: 1rem 1rem;
    border-bottom: 1px solid rgb(207, 217, 222);
    background-color: white;
}
#twitter-timeline .twitter-header a{
    font-size: 20px;
    font-weight: bold;
    line-height: 24px;
    color: rgb(15, 20, 25);
}

#twitter-timeline .tweet {
    display: grid;
    /* row-gap: .25rem; */
    width: 100%;
    padding: .5rem 1rem;
    padding-top: 1rem;
    border-bottom: 1px solid rgb(207, 217, 222);
    background-color: white;
    transition: background-color 300ms ;
}
#twitter-timeline .tweet:hover {
    background-color: #f7f7f7;
    cursor: pointer;
}

#twitter-timeline .tweet--row {
    display: grid;
    grid-template-columns: 3rem 1fr;
    column-gap: 1rem;
    width: 100%;
}

#twitter-timeline img {
    max-width: 100%;
    height: auto;
}

#twitter-timeline .repost,
#twitter-timeline .repost a {
    font-size: 13px;
    color: rgb(83, 100, 113);
    font-weight: bold;
}

#twitter-timeline a:hover {
    text-decoration: underline;
    color: inherit;
}

#twitter-timeline .repost--svg {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#twitter-timeline .repost--svg svg {
    height: 13px;
}

#twitter-timeline .tweet-user-img img {
    border-radius: 100%;
}

.tweet-data {
    display: grid;
    row-gap: .25rem;
}

.tweet-data--meta>* {
    line-height: 100%;
}

.tweet-data--meta {
    display: flex;
    column-gap: .5rem;
    flex-wrap: wrap;
    row-gap: .25rem;
}

.tweet-data--meta--name,
.tweet-data--meta--time {
    display: flex;
}

.tweet-data--meta--name a {
    font-size: 15px;
    color: rgb(15, 20, 25);
    font-weight: bold;
}

.tweet-data--meta--time {
    color: rgb(83, 100, 113);
    font-size: 15px;
}

.tweet-data--meta--time a {
    color: rgb(83, 100, 113);
}

.tweet-data--text p {
    font-size: 15px;
    color: rgb(15, 20, 25) !important;
    line-height: 20px;
}

.tweet-data--text a:hover {
    color: #0079c0 !important;
}

.view-more-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}
.view-more-wrapper .view-more{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(29, 155, 240);
    border-radius: 100vw;
    padding: 0 1rem;
    height: 36px;
    transition: background-color 300ms;
}
.view-more-wrapper .view-more:hover{
    text-decoration: none !important;
    background-color: rgb(14, 138, 221);
}
.view-more-wrapper .view-more span{
    color: white;
    font-size: 15px;
    font-weight: bold;
    line-height: 20px;
}