/* Master */
* {
    padding: 0px;
    margin: 0px;
    font-family: 'Roboto';
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 13px;
}
::-webkit-scrollbar-track {
    background: rgb(54, 54, 54);
}
::-webkit-scrollbar-thumb {
    background: rgb(117, 117, 117);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgb(8, 255, 21);
}
/* Header */
#header {
    width: 100%;
    height: 200px;
    background-color: rgb(0, 0, 0);
    margin: 0px auto;
}
#header h1 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding-top: 58px;
    font-size: 63px;
    text-shadow: 1px 2px 1px #05f805;
    transition: all 300ms;
}
#header h1:hover {
    text-shadow: 1px 2px 1px #f80505, 1px 2px 1px #0905f8;
}
#header a {
    text-decoration: none;
    color: white;
}
/* Navegation */
#nav {
    width: 100%;
    height: 50px;
    background-color: #161616;
    color: white;
    font-size: 15px;
    box-shadow: 0px 0px 2px rgb(92, 92, 92);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}
#nav ul {
    list-style: none;
    margin: 0px auto;
    width: 1190px; /* This widht could be change by %*/
}
#nav > ul > li {
    float: left;
    line-height: 50px;
    border-right: 1px solid #2f302f;
}
#nav > ul > li > a {
    display: block;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 300ms;
}
#nav > ul > li > a:first-child {
    border-left: 1px solid #2f302f;
}
#nav > ul > li > a:hover {
    color: #ffffff;
    background-color: rgb(76, 190, 31);
    box-shadow: 0px 0px 4px gray inset;
}
/* Main Content */
#main-content p {
    font-size: 20px;
}
.games_img {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.game_information {
    margin-top: 20px;
    margin-bottom: 50px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.game_label {
    color: #05f805;
    text-align: center;
    /* width: 50%; */
    margin-left: auto;
    margin-right: auto;
}
.game_info {
    color: black;
}
h2 {
    text-align: center;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.games {
    padding-top: 20px;
}
.games-grey {
    background-color: rgb(231, 229, 229);
    padding-top: 20px;
    padding-bottom: 20px;
}
.gallery {
    text-align: center;
    padding-bottom: 40px;
}
.gallery img {
    margin-right: 10px;
    border-radius: 10%;
}
.gallery img:hover {
    box-shadow: 5px 5px 5px rgba(6, 252, 47, 0.589);
    opacity: 0.96;
    transition: all 300ms;
}
.gallery a {
    text-decoration: none;
}
.videogallery {
    width: 100%;
    padding-top: 20px;
    display: block;
    text-align: center;
}
.videogallery video {
    padding: 10px;
}
/* Footer */
#footer {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 40px;
    background-color: #000000;
    padding-top: 10px;
    padding-bottom: 10px;
    color: rgb(255, 255, 255);
    font-size: 20px;
}
#footer a {
    text-decoration: none;
    color: white;
}
#footer a:hover {
    color: #00ff15;
}
