@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&display=swap');
*{
    margin: 0;
    padding: 0;
}
.brand_logo
{
    font-family: 'Bungee Shade', cursive;
    font-size: 30px;
    color: #f25d03;
}
.text-danger {
    color: rgb(0 114 175) !important;
}
.bg-danger {
    background-color: #005889 !important;
}
.live_gif
{
    text-align: right;
}
.live-img {
    background-color: #ffe706 !important;
    border-radius: 30px;
}
footer a:hover {
    text-decoration: underline !important;
}
.table tr
{
    font-weight: bold;
    font-size: 17px;
}
.table tr td
{
    position: relative;
}
.cross-icon
{
    display: block;
    width: auto;
    height: auto;
    text-align: center;
    color: #f25d03;
    /*position: absolute;*/
    /*font-size: 30px;*/
    /*left: 0px;*/
    /*top: 0px;*/
    /*bottom: 0px;*/
    /*right: 0px;*/
    margin: auto;
}
.blink_me {
    animation: blinker 1s linear infinite;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}
@media only screen and (max-width: 600px) {
    .brand_logo
    {
        font-family: 'Bungee Shade', cursive;
        font-size: 15px;
        text-align: center;
    }
    .live_gif
    {
        text-align: center;
    }
    .live_gif img 
    {
        height: 20px;
    }
    
    table th, table td
    {
        font-size:10px;
    }
}
