/* stylesheets for get news */
.title>a{
    color:white;
    text-decoration: none;
    /* padding-bottom: 5px;
    border-bottom: 1px solid #ffffff00; */
}
.link:hover{
    /* text-decoration: underline; */
    /* text-decoration-color: linear-gradient(white,#21b0f8); */
    animation: underlinewave cubic-bezier(0.24, 0.95, 0.51, 0.96) 0.618s forwards
}
.title{
    text-align: left;
}
.publish_time{
    text-align: right;
}

@keyframes underlinewave {
    0%{
        /* text-decoration: underline; */
        padding-bottom: 3px;
        border-bottom: 2px solid rgba(33, 176, 248, 0);
        /* text-decoration-color: rgba(33, 176, 248, 0); */
        
    }
    25%{
        /* text-decoration: underline; */
        padding-bottom: 3px;
        border-bottom: 2px solid rgba(203, 238, 255, 0.25);
        /* text-decoration-color: rgba(33, 176, 248, 0.25); */
    }
    50%{
        /* text-decoration: underline; */
        padding-bottom: 3px;
        border-bottom: 2px solid rgba(217, 242, 255, 0.5);
        /* text-decoration-color: rgba(33, 176, 248, 0.50); */
    }
    100%{
        /* text-decoration: underline; */
        padding-bottom: 3px;
        border-bottom: 2px solid rgb(255, 255, 255);
        /* text-decoration-color: rgba(33, 176, 248, 1); */
    }
}

.news{
    line-height: 1.75;
}