.first-notice-container {
    background-image: linear-gradient(30deg, rgb(0, 140, 255), rgb(0, 210, 243));
    /*display: none !important;*/
    animation: toTop 0.8s linear;
}
@keyframes toTop {
    0%{
        bottom: -200px;
    }
    100%{
        bottom: 0px;
    }
}

@-webkit-keyframes toTop {
    0%{
        bottom: -200px;
    }
    100%{
        bottom: 0px;
    }
}
.first-notice-container-remove {
    color: #fff; 
    font-weight: 900;
}
.first-notice-container-remove:hover {
    text-decoration: none; 
    color: #fff; 
}
.first-notice-container p a {
    color:#fff; 
    /*text-decoration: none;*/
    font-weight: 900;
}