#news-information {
    text-align: center;
    margin: 50px;
}

.news-link {
    text-decoration: none;
    position: relative;
}

.news-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: white;
}

.news-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: cyan;
    
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease;
}

.news-link:hover::after {
    transform: scaleX(1);
}

.news-link:visited {
    color: white;
}