<style>
.hide_element{
display:none;
}
@keyframes blink {
0% {color: #FFFFFF;}
50% {color: #ffd400;}
100% {color: #FFFFFF;}
}
.homepage_notification{
/* text-transform: uppercase; */
font-weight: 600;
position: relative;
z-index: 16;
padding: 4px;
font-size: 16px;
color: #ffffff;
background-color: rgb(114, 15, 17);
animation: blink 2s linear infinite;
border-radius: 5px;
}
.homepage_notification a {
color: inherit;
text-decoration: none;
}
.homepage_notification a:hover {
color: #CCCCCC;
text-decoration: underline;
}
</style>