html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

body {

    margin: 0;
    padding: 0;
    border: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -ms-font-smoothing: antialiased;
    overflow-x: hidden;
    /*  Prevents Flickering  */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    vertical-align: baseline;
    font-family: SahelFontFD;
    font-size: smaller;
    max-font-size: 30px;
    min-font-size: 10px;
    background-color: #101010;

}

.stickers_info{
    background-color: transparent;
    width: 40px;
}
.csgo-sticker-image{
    width: 40px;
    transition: all 0.2s;
}
.csgo-sticker-image:hover{
    transform: scale(2.2);

}

.photo4 {
    opacity: 0;
    animation: fadeinphoto 1.6s ease-in infinite;
    -moz-animation: fadeinphoto 1.6s ease-in infinite;
    -webkit-animation: fadeinphoto 1.6s ease-in infinite;
    -o-animation: fadeinphoto 1.6s ease-in infinite;

}

@-webkit-keyframes fadeinphoto {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.grid-container {
    display: grid;
}

@media only screen and (max-width: 665px) {

    .grid-container--fit {
        grid-template-columns: repeat(auto-fill, minmax(150px,4fr));
    }

    .grid-element {

        height: 235px;
    }
}

@media only screen and (min-width: 665px) {
    .grid-container--fit {

        grid-template-columns: repeat(auto-fill, minmax(180px,2fr));
    }

    .grid-element {

        height: 230px;
    }
}

.heroes-grid {
    display: grid;
}

@media only screen and (max-width: 665px) {

    .heroes-grid-fit {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .heroes-elements {
        width: 100%;
        max-width: 150px;
        height: 87px;

    }
}

@media only screen and (min-width: 665px) {
    .heroes-grid-fit {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .heroes-elements {
        width: 100%;
        max-width: 150px;

    }
}
