@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');

/* BACKGROUND
____________________*/

#tabContent #videoBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #262E21;
}

*::-webkit-scrollbar {
    width: 5px;
    background-color: #262E21;
}

*::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #424e39;
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: none;
}

.update {
    position: absolute;
    width: 170px;
    color: rgba(255, 255, 255, 0.5);
    font-size: x-small;
    top: 25px;
    right: 18px;
    text-align: right;
    transition: all ease-in-out 0.3s;
}

.update:hover {
    color: rgba(255, 255, 255, 1);
}


/* CARTES
____________________*/

.carte-item {
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 180px;
    height: 180px;
    position: relative;
}

@media screen and (max-width:700px) {
    .carte-item {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width:450px) {
    .carte-item {
        width: 100px;
        height: 100px;
    }
}

.carte-item.lvl0 {
    background-image: url('teams/00.png');
}

.carte-item.lvl0 .name {
    color: #563923;
}

.carte-item.lvl1 {
    background-image: url('teams/01.png');
}

.carte-item.lvl1 .name {
    color: #683c26;
}

.carte-item.lvl2 {
    background-image: url('teams/02.png');
}

.carte-item.lvl2 .name {
    color: #464646;
}

.carte-item.lvl3 {
    background-image: url('teams/03.png');
}

.carte-item.lvl3 .name {
    color: #46390c;
}

.carte-item.lvl4 {
    background-image: url('teams/04.png');
}

.carte-item.lvl4 .name {
    color: #f1e38b;
}

.carte-item.lvl5 {
    background-image: url('teams/05.png');
}

.carte-item.lvl5 .name {
    color: #ffb21b;
}

.carte-item.lvl6 {
    background-image: url('teams/06.png');
}

.carte-item.lvl6 .name {
    color: #997d43;
}

.carte-item .avatar {
    position: absolute;
    width: 70%;
    height: auto;
    left: 15%;
    display: block;
    bottom: 27.025%;
}

.carte-item .name {
    position: absolute;
    bottom: 11%;
    font-family: Teko;
    font-size: 18px;
    width: 70%;
    left: 15%;
    text-align: center;
    font-weight: 500;
}


/* MENU
____________________*/

.nav-link {
    background: none;
    border: none;
    padding: 10px;
    transition: 0.3s all ease-in-out;
}

.nav-link:hover,
.nav-link.active {
    transform: translateY(5px);
}

.nav-link img {
    width: 30px;
    height: 30px;
}


/* TEAM
____________________*/

.team-title {
    font-family: Teko;
    padding: 0.5rem!important;
    text-transform: uppercase;
    font-size: 40px;
    color: #FFF;
    text-align: center;
    margin-top: 3rem!important;
    margin-bottom: 3rem!important;
}

.team-title img {
    height: 150px;
    margin-bottom: 10px;
}

#tabContent {
    position: relative;
}