/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css');
:root {
    --bgColor:#1C1C1C;
    --accentColor: #E6E6E6;
    --bgColorg:#000000;
    --accentColorg: #d4af37;
    --bgColors:#000000;
    --accentColors: #a8a8a9;
    --bgColorb:#000000;
    --accentColorb: #cd7f32;
    --font: 'Karla', sans-serif;
    --firstName: 'John';
    --lastName: 'Doe';
}

html{
    scroll-behavior: smooth
}
.box-image{
    border-radius: 50%;
    width: 60px;
    height: 60px;

}
.badge {
  background-color: BlueViolet;
  color: white;
  padding: 4px 8px;
  text-align: center;
  border-radius: 5px;
}
body{
    background-color: var(--bgColor);
}

#userPhoto{
    width: 110px;
    height: 110px;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
}

*{
    font-family: var(--font);
}

#userName{
    color: #bbb;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}


h5{
    text-align: center;
    margin-bottom: 20px;
    color: #E6E6E6;
    font-family: var(--font);
    font-style: italic;;
}
p{
    text-align: center;
    margin-bottom: 20px;
    color: #E6E6E6;
    font-family: var(--font);
    font-style: italic;;
}
h1{
    text-align: center;
    margin-bottom: 20px;
    color: #E6E6E6;
    font-family: var(--font);
}
h2{
    text-align: center;
    margin-bottom: 20px;
    color: #E6E6E6;
    font-family: var(--font);
}
h4{
    text-align: center;
    margin-bottom: 20px;
    color: #E6E6E6;
    font-family: var(--font);
}
h6{
    text-align: center;
    margin-bottom: 20px;
    color: rgb(136, 136, 136);
    font-family: var(--font);
}
.atrib{
    text-align: center;
    display: block;
    font-size: 12px;
    margin-bottom: 20px;
    color: rgb(136, 136, 136);
    font-family: var(--font);
    padding: 17px;
}

.games{
    display: flex;
    width: 90%;
    align-content: flex-start;
    justify-content: center;
    position: absolute;
    flex-wrap: wrap;
    left: 50%;
    transform: translate(-50%, 0%) !important;
}

.games a:not(.epci){
    scroll-margin-top: 2em;
    outline:transparent;
    display: flex;
    width: 250px;
    height: 250px;
    background: #292929;
    margin: 5px;
    border-radius:10px;
    justify-content: center;
    align-items: flex-end;
    box-sizing: border-box;
    padding:8px;
    color:#fff;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    transition: .2s;
}

.games a:not(.epci) b{
    z-index:5;
}

.active{
    display: flex !important;
}

.games a:not(.epci) img{
    position: absolute;
    top:0px;
    left:0px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index:2;
}
.games a:not(.epci):before{
    content: "";
    background: rgba(0,0,0,0.25);
    width:100%;
    height:100%;
    position: absolute;
    top:0px;
    left:0px;
    z-index:3;
}

.bar{
    background: #000;
    height: 0px;
    width:100%;
    transition: .4s;
    z-index:4;
    position: absolute;
    bottom:0px;
    left:0px;
}

.games a:not(.epci):hover .bar{
    height:40px;
}

.games a:not(.epci):hover{
    filter: brightness(95%);
    translate: 0 1px;
    box-shadow: none;
}

.game_title{
    width: 100%;
    display: flex;
    justify-content: center;
    
}

.search{
    width:300px;
    height:30px;
    background: #292929;
    border:1px solid #353535;
    border-radius:5px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
    color:#fff;
    padding-left:10px;
    transition: .2s;
}

.button{
    width:100px;
    margin-left:5px;
    cursor:pointer;
    height:30px;
    background: #292929;
    border:1px solid #353535;
    border-radius:5px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
    color:#fff;
    transition: .2s;
    padding-right:5px;
}

.button:hover,.button:focus{
    filter: brightness(95%);
    box-shadow: none;
    outline: none;
    border-color:#00bb00;
}

.search:focus{
    filter: brightness(95%);
    box-shadow: none;
    outline: none;
    border-color:#00bb00;
}

.games a:not(.epci) .badge{
    position: absolute;
    top:5px;
    right:5px;
    z-index:6;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
}

.badge2p{
    position: absolute;
    top:5px;
    left:5px;
    z-index:6;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
}