/*900px*/
@media screen and (max-width: 900px) {
    .holder{
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .topH{
        font-size: 45px;
        padding: 10px 25px 10px 25px;
        margin: 20px auto 30px auto;
    }
    .bottomH{
        font-size: 29px;
        padding: 10px 10px 10px 15px;
        margin: 5px auto 5px auto;
        width: 250px;
        text-align: left;
    }
    .scrollBox{
        width: 90vw;
        overflow-x: scroll;
        margin: 50px auto 30px auto;
    }
    .scrollBG{
        position: absolute;
        bottom: 1.82em;
        left:3.5vw;
        right:3.5vw;;
        background-color: #b2b2b2;
        border-radius: 10px;
        width: 93vw;
        height: 14px;
        z-index: -1;
    }
    body{
        background: #f3f3f3 url("../imgs/mobileIndexBG.png") no-repeat fixed;
        background-size: cover;
    }

}
@media not screen and (max-width: 900px) {
    .holder{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .topH{
        font-size: 65px;
        padding: 10px 55px 10px 55px;
        margin: 20px 0 40px 40px;
    }
    .bottomH{
        font-size: 40px;
        padding: 10px 10px 10px 30px;
        margin: 0 0 10px 80px;
        width: 300px;
    }
    .scrollBox{
        width: 48vw;
        overflow-x: auto;
        margin: 50px 0 30px 20px;
    }
    .scrollBG{
        display: none;
    }
    /*bgImg*/
    body{
        background: url("../imgs/bgImg.png") no-repeat fixed;
        background-size: cover;
    }
    .body{
        height: 100%;
        position: relative;
    }
    .bgImg{
        height: 100%;
        width: 100%;
        position: absolute;
        z-index: 55;
        background: url("../imgs/bgSecond.png") no-repeat fixed;
        background-size: cover;
        -webkit-animation: float 5s ease-in-out infinite alternate;
        -moz-animation: float 5s ease-in-out infinite alternate;
        animation: float 5s ease-in-out infinite alternate;
    }

    @keyframes float {
        0% {
            transform: translatey(0px);
        }
        50% {
            transform: translatey(-10px);
        }
        100% {
            transform: translatey(0px);
        }
    }
    html,body{
        height: 100% !important;
        min-height: 100%!important;
    }
}





.topH{
    background-color: #00d700;
    color: white;
    width: max-content;
    border-radius: 5px;
    border-bottom: solid 4px #008e00;
    text-shadow: 1px 1px rgba(0,0,0,.5);
    font-family: regularBold, sans-serif;
}
.bottomH{
    background-color: #00b5cb;
    color: white;
    border-bottom: #007596 solid 4px;
    border-radius: 5px;
    text-shadow: 1px 1px rgba(0,0,0,.5);
    position: relative;
    cursor: pointer;
    font-family: next, sans-serif;
}
.btmH1{
    background: #00b5cb url("../imgs/valkBG.png") 0 0 no-repeat;
    background-size: 100px;
}
.btmH2{
    background: #00b5cb url("../imgs/rbxBG.png") 0 14px no-repeat;
    background-size: 125px;
}
.arrowH2{
    position: absolute;
    bottom: 2px;
    right: 10px;
    width: 60px;
}


.scrollBox{
    font-family: next, sans-serif;
    overflow-y: hidden;
    height: 200px;
    white-space: nowrap;
    scrollbar-color: #ffffff #b2b2b2;
}
.limBox{
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 7px -.5px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 7px -.5px rgba(0,0,0,0.2);
    margin: 10px;
    height: 150px;
    width: 150px;
    padding-bottom: 10px;
    background-color: white;
}
.limBox img{
    display: block;
    height: 100px;
    width: 100px;
    margin: auto;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.limBox .assetName{
    overflow: hidden;
    width: 90%;
}

.limBox p{
    margin: 3px auto 3px auto;
    text-transform: uppercase;
}
