html {
    position: relative;
    height: 100%;
}

body {
    min-height: 100vh;
}

body,
html {
    background: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../img/backgrounds/bg.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Abel", sans-serif;
    color: #a3a3a3;
    box-shadow: rgba(0, 0, 0, 0.68) 80px 18px 86px 80px inset;
}

a {
    color: #a3a3a3;
    text-decoration: none;
}

a:hover {
    color: #ccc;
}

.game-logo {
    margin: 30px 0 89px;
    width: 300px;
}

.game-logo .logo {
    height: 80px;
}

.game-logo .game-round {
    font-family: 'Homenaje', sans-serif;
    color: #999;
}

.card {
    background-color: rgba(0, 0, 0, .59);
    border: 1px solid rgba(50, 50, 93, 0.19);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.card .card-header {
    font-family: 'Homenaje', sans-serif;
    font-size: 22px;
    padding: 5px 10px;
    border-bottom: 2px solid rgba(50, 50, 93, 0.19);
}

.card .card-header .iconify {
    width: 27px;
    height: auto;
    margin-right: 9px;
    color: #aaa;
}

.card .card-footer {
    border-top: 2px solid rgba(50, 50, 93, 0.19);
}

.nav-pills .nav-item {
    width: calc(90% / 2);
    margin: 0 5px;
}

.nav-pills .nav-link {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 7px 8px;
    font-size: 18px;
    line-height: 14px;
    text-align: center;
    transition: all 0.2s ease-in-out 0s;
    color: #fff;
    border-radius: 5px;
    border: 1px solid rgba(55, 55, 55, .8);
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link:focus {
    opacity: 0.5;
    color: var(--bs-danger);
}

.nav-pills.nav-features .nav-item {
    width: calc(85%/10);
    margin: 0 5px 5px;
}

footer {
    text-align: center;
    margin: 10px;
    font-size: 14px;
}

@media (max-width: 991px) {
    html,
    body {
        box-shadow: none;
    }
    .game-logo {
        margin: 5px 0;
    }
}