*{
    margin:0;
    padding:0;
    /*box-sizing:border-box;*/
}

body{
    font-family:Arial, sans-serif;
}

.announcement-wrapper{
    width:100%;
    height:30px;
  /*  background:#eaf3ff;*/

    overflow:hidden;
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:10px 10px;
}

.announcement{
    position:absolute;

    width:100%;

    text-align:center;

    font-size:16px;
    font-weight:bold;
    color:#0b3d91;

    opacity:0;
    visibility:hidden;

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

    transform:translateY(20px);
}

.announcement.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.announcement a{
    color:#0b3d91;
    text-decoration:none;
}

.announcement a:hover{
    text-decoration:underline;
}

/* Mobile Responsive */

@media(max-width:768px){

    .announcement{
        font-size:16px;
        line-height:24px;
        padding:0 10px;
    }

    .announcement-wrapper{
        height:90px;
    }
}