*{
    font-family: 'Comic Neue', cursive;
}
:root{
    --main-color:  #272b30dd;
}
body{
    background: #2567694c;
    background: linear-gradient(0deg, rgba(37, 103, 105, 0.522) 0%, rgba(7, 19, 46, 1) 100%);
}

span {
  display: inline-block;
}

#gameNav .navbar{
    width: 80%;
    height: 60px;
    background-color: #3A497B;
    border-radius: 20px;
    color: white;
    position: sticky;
    top: 0;
    margin: auto;
}
#gameNav .navbar-brand img{
    height: 40px;
    width: 40px;
    margin-right: 10px;
    margin-left: 10px;
}
#gameNav .navbar-brand{
 color: white;   
}
.navbar .nav-item .active{
    color: #0099CC ;
}
.nav-link{
    color: white;
    font-size: 15px;
    font-weight: 400;
    line-height:18.375px;
    padding:8px;
}
#gameNav {
    
}
/* {End of Navbar */

/* Start of Game Category */
#gameCards .container{
    margin-top: 50px;
    margin-bottom: 50px; 
}
#gameCards span a{
    display: inline-flex;        /* 🔥 key fix */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: blue;
    color: #fff;
    width: 50px;
    height: 25px;
    /* top: 10px;
    right: 10px; */
    
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
}
#gameCards h5{
    font-size: 20px;
}
#gameCards .card-body{
    height: 190px;
    overflow: hidden;
    background-color: #3A497B;
    color: white;
}
#gameCards .card-footer{
    background-color: #3A497B;
    color: white;
    height: 60px;
    padding-top: 12px;
    border-color: #202328;
}
#gameCards .card-footer{
    li{
    background-color: transparent;
    float: inline-start;
    list-style: none;
    color: white;
    padding: 10px 20px 0 0;
    font-size: 15px
}
}
.card{
    /* border: 2px solid #202328; */
    transition: 1ms all;
}
.card:hover{
    scale: 1.1;

}

/* End of Game Category */

.games{
    
    /* background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    background-image: url(../images/wraper.png);
    background-size: cover;
    background-position: center;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    overflow: hidden;
    }
        
       .games span {
            font-size: 5rem;
            color: #fff;
            font-family: "Radley", serif;
            top: 20px;
            text-transform: uppercase;
            display: inline-block;
            transform: rotateY(0deg);
            transition: 0.1s;
            animation: bounce 0.3s ease infinite alternate;
            position: relative;
            text-shadow: 0 1px 0 #b7b7b7, 0 2px 0 #b7b7b7, 0 3px 0 #b7b7b7,
            0 4px 0 #b7b7b7, 0 5px 0 #b7b7b7, 0 6px 0 transparent,
            0 7px 0 transparent, 0 8px 0 transparent, 0 9px 0 transparent, 
            0 10px 0 rgba(0, 0, 0.5);
        }
        h1 .games span:nth-child(2) {
            animation-delay: 0.1s;
        }
        h1 .games span:nth-child(3) {
            animation-delay: 0.2s;
        }
        h1 .games span:nth-child(4) {
            animation-delay: 0.3s;
        }
        h1 .games span:nth-child(5) {
            animation-delay: 0.4s;
        }
        h1 .games span:nth-child(6) {
            animation-delay: 0.5s;
        }

        
@keyframes bounce {
    100% {
        top: -20px; 
        text-shadow: 0 1px 0 #ccc,
         0 2px 0 #ccc,
         0 3px 0 #ccc,
         0 4px 0 #ccc,
         0 5px 0 #ccc,                     
         0 6px 0 #ccc,                             
         0 7px 0 #ccc,
        0 8px 0 #ccc,
        0 9px 0 #ccc,
        0 60px 30px rgba(0, 0, 0.3);
        } 
}