/*CSS variables section*/
:root {
    background-color: rgba(0, 0, 21, 1);
}

a {
    text-decoration: none;
}

/*Extra Large screens - Extra large desktops*/
.header{
}

.heeder-large-screen {
    display: flex !important;
    justify-content: space-evenly !important;
    color:orange;
    font-size: 18px !important;
}

body {
    margin: 0;  
}

.topnav {
    overflow: hidden;
    background-color: #333;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 15px;
}

.topnav a:hover {
    background-color: #292929;
    color: lime;
}

.topnav a.active {
    background-color: #330099;
    color: white;
}

.topnav a.active2 {
    background-color: #FF0000;
    color: white;
}

.topnav .icon {
    display: none;
}

main {
    width:80% !important;
    margin: auto !important;
}

.title {
    color:white;
    font-weight: 600;
    font-size: 40px;
    margin:50px 0px;
    text-align: center;
    text-transform: ;
}

h1 {
   /* news line */
    color: red;
    font-size: 60px;
    text-align: center;
}

/*h2 {
   /* welcome box * /
    color:orange;
    font-size: 15px;
    text-align: center;
}*/

h3 {
    color:orange;
    font-size: 25px;
    text-align: center;
}

h4 {
    color:lime;
    font-size: 15px;
    text-align: center;
}

.b-list {
    margin: 25px;;
    padding: 15px;
}

.b-list:hover {
    transform: scale(1.05);
}

.bingohome {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color:;
    justify-content: center;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: orange;
    font-size: 8px;
    text-align: left;
}

/*General CSS and CSS reset*/

html {
  scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
}

/* ____________________________________________________________________*/
/*MEDIA QUERIES*/
/*Large screens - Desktop*/
@media screen and (max-width: 1500px) {
    .hero{
        height: 250px !important;;
        background-image: url("background1.jpg");
    }
    .hero-description{
        height: 550px
    }
    .hero-title{
        font-size:50px;
    }
}

/*medium screens - Laptops*/
@media screen and (max-width: 1024px) {
    main{
        width:100% !important;
        margin: auto !important;
    }    
}

/*Small screens - tablets*/
@media screen and (max-width: 768px) {
    .heeder-large-screen{
        display:block !important;
    }
    header a{
        font-size: 14px;
    }
    .hero{
        height: 200px !important;
        background-image: url("background1.jpg");
    }
    .hero-description{
        height: 400px;
        background-color: rgba(0, 0, 21, .7);
    }
    .hero-title{
        font-size: 35px;;
    }
    .hero-text p{
        width: 80%;;
        font-size: 13px;
    }
    .title{
        text-align: center;
        font-size: 30px;
    }
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
   }
}
    
/*Extra small screens - phones*/
@media screen and (max-width: 480px) {
    .heeder-large-screen{
        display:block !important;
    }
    .hero{
        height: 250px !important;
        background-image: url("background1.jpg");
    }
    .hero-description{
        height: 450px;
        background-color: rgba(0, 0, 21, .7);
    }
    .hero-title{
        font-size: 30px;;
        padding-top: 70px;
    }
    .hero-text p{
        width: 100%;;
        font-size: 13px;
    }
    .title{
        text-align: center;
        font-size: 25px;
    }
    h5{
        font-size: 15px;
    }
    .badge{
    }
    p{
        font-size: 12px;
    }
}