body{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a{
    text-decoration: none;
}

.empty-div{
    width: 100px;
}

.announce-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 1rem;
    background-color: #898de6;
    color: #fff;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    animation-name: fade-in;
    animation-duration: 1.2s;
    position: relative;
    top: 70px;
    justify-content: center;
}

@keyframes fade-in{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

.fa-brands{
    width: 25px;
    height: 25px;
    background-color: #ffffff;
    border-radius: 50%;
}

.icon img{
    width: 25px;
    height: 25px;
    background-color: #ffffff;
    border-radius: 50%;
}

.announcement-message{
    color: #ffffff;
    font-size: 15px;
    text-align: center;
}

.announce-bar{
    display: flex;
}

.social-media-links{
  /* width: 400px;
  justify-content: space-between; */
}

.social-media-links a{
margin: 0px 7px;
transition: all 0.3s ease-in-out;
}

.social-media-links a:hover{
    opacity: 0.5;
}

@media only screen and (max-width: 600px){
    .announce-bar{
       flex-direction: column;
       padding: 20px 20px 10px 20px;
       transition: all 0.3s ease-in-out;
    }

    .announcement-message{
        margin-bottom: 10px;
    }

    .icon img{
        width: 21px;
        height: 21px;
        background-color: #ffffff;
        border-radius: 50%;
    }
}

@media only screen and (max-width: 350px){
    .announcement-message{
        color: #ffffff;
        font-size: 12px;
    }
}