@font-face {
    font-family: treasureHunt;
    src: url(../content/fonts/treasureHunt.ttf);
}
@font-face {
    font-family: AllKApps;
    src: url('../content/fonts/Race Sport.ttf');
}
body {
    margin: 0;
    background-color: #4e2d16;
}
    body .index-imgBg {
        position: absolute;
        left: 50%;
        top: 0;
        width: auto;
        height: 100vh;
        transform: translateX(-50%);
        opacity: 0.8;
    }
body .fullscreen{
    position: relative;
}
.index-divTitle {
    display: flex;
    font-family: AllKApps;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 5%;
    font-size: 55px;
    color: #64d700;
    box-shadow: 1px 1px 2px 3px black;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 25px;
    text-shadow: 2px 2px black;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
}
.index-gamesFrame {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: row;
    gap: 20px;
}
.index-gamesBody {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px 20px;
    background-color: #433126ed;
    box-shadow: 1px 1px 2px 3px black;
    border-radius: 15px;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 20px;
}
.index-gamesCard {
    display: flex;
    width: 135px;
    padding: 10px 15px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    user-select: none;
    box-shadow: 1px 1px 2px 3px black;
    background-color: #4d2b17;
    cursor: pointer;
}
    .index-gamesCard img {
        width: 70%;
        height: auto;
        padding: 15px;
    }
    .index-gamesCard div {
        color: #ffff00eb;
        text-shadow: 2px 2px 0px black;
    }
    .index-gamesCard:hover {
        box-shadow: 1px 1px 2px 3px black, inset 0 0 0px 3px #64d700;
    }
.index-gameTHunt {
    font-size: 17px;
    font-family: treasureHunt;
    text-align: center;
}