*{
    padding: 0;
    margin: 0;
    font-family: "poppins", sans-serif;
    box-sizing: border-box;
}

.header{
    height: 100vh;
    width: 100%;
    padding: 0 8%;
    /* background: #080008; */
    position: relative;
    background-image: url(../img/fight.gif);
    background-size: cover;
    background-repeat: no-repeat;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    width: 400px;
}

.nav-links{
    padding: 28px 0;
}

.nav-links li{
    display: inline-block;
    margin: 0 15px;
    font-size: 25px;

}

.nav-links li a{
    text-decoration: none;
    color: #fff;
    padding: 5px 0;
    position: relative;
}

.nav-links li a::after{
    content: '';
    background: #ff3d00;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s;

}

.nav-links li a:hover::after{
    width: 100%;
}


.btn{
    background: #ff3d00;
    color: #fff;
    padding: 10px 30px;
    border-radius: 3px;
    cursor: pointer;
}


.content_game{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90%;
    max-width: 900px;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;

}
.content_game_about{
    position: absolute;
    left: 50%;
    /* top: 50%; */
    margin-top: 17%;
    /* max-width: 900px; */
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    /* background-color: rgba(255, 166, 0, 0.30); */
    /* background-image: url(../img/aboutUs.png); */
    /* background-position: center;
    background-size: cover; */

    
    


}

/* #game_about { 
    border: 10px solid transparent;
    padding: 15px;
    border-image: url(../img/border.png) 30 round;
  } */

.content_game_about h1{
    font-size: 65px;
    font-weight: 600;
    margin: 40px;

}


.content_game h1{
    font-size: 65px;
    font-weight: 600;
    margin: 40px;

}

.content_game h1 a{
    color: white;
    text-decoration: none;

}

.category-list{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;

}

.category{
    width: 80px;
    height: 80px;
    background: rgba(255, 61, 0, 0.15);
    margin: 15px;
    font-size: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.category img{
    width: 25px;
    margin-bottom: 5px;


}

.back-video{
    position: absolute;    
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;


}



/* Particlejs */

/* ---- reset ---- */



/* ---- particles.js container ---- */
/* 
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
} */

@media screen and (max-width: 900px){
    .logo{
        width: 200px;
    }
    .nav-links{
        display: flex;
    }
    .nav-links li{
        font-size: 20px;
    }
    .content_game h1{
        font-size: 45px;

    }

    
}


@media screen and (max-width: 550px){
    .logo{
        width: 100px;
    }
    .nav-links li{
        font-size: 15px;
    }
    .content_game h1{
        font-size: 30px;
    }


    
}