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

a {
    text-decoration: none;
}

button {
    border: 2px solid #ffffff;
    padding: 7px 7px;
    border-radius: 10px;
}

.empty-div {
    width: 100px;
}

.announce-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 20px;
    font-size: 1rem;
    background: #5290e2;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    animation-name: fade-in;
    animation-duration: 1.2s;
    transform: translate3d(0px, 40px, 0px);
    margin-top: 20px;

}

.announce-bar p {
    margin-right: 15px;
}

@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: 15px 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%;
    }

    .announce-bar p {
        margin-right: 0px;
        margin-bottom: 10px;
    }

}

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