/*Обнуление*/
*{padding: 0;margin: 0;border: 0;}
*,*:before,*:after{-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: inherit;}
/*--------------------*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    /*min-height: 100vh;*/
    background: #000;
    font-family: fontxo;
}

.container{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    font-family: fontxo;
    color: #fff;
    border: #fff 1px solid;
    margin: 0 auto;

}

#text{
    padding: 10px;
    top: calc(var(--top, 25) * 1%);
    font-size: 40px;
    position: relative;
    text-align: center;
    width: 500px;
    color: #fff;
}

#wallet{
    padding: 10px;
    top: 45%;
    font-size: 30px;
    position: relative;
    text-align: center;
    width: 500px;
    color: #fff;
}


#balance{
    padding: 10px;
    top: 39%;
    font-size: 40px;
    position: relative;
    text-align: center;
    width: 500px;
    color: #fff;
}

#obj{
    padding: 10px;
    top: 28%;
    font-size: 50px;
    position: relative;
    text-align: center;
    width: 500px;
    color: #f00;
}


#textBalance{
    padding: 10px;
    top: 40%;
    font-size: 30px;
    position: relative;
    text-align: center;
    width: 500px;
    color: #fff;
}

@font-face{
    font-family: 'fontxo';
    src: url('MechaCondensed-zmn4.ttf');
}

@media screen and (max-width: 480px) {

    .container{
        position: absolute;
        top: 50%;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        font-family: fontxo;
        /*background: #001111;*/

        border: #fff 1px solid;
        margin: 0 auto;
    }


    #text{
    padding: 10px;
    top: calc(var(--top, 25) * 1%);
    font-size: 30px;
    position: relative;
    text-align: center;
    width: 300px;
    color: #fff;
}

#wallet{
    padding: 10px;
    top: 45%;
    font-size: 20px;
    position: relative;
    text-align: center;
    width: 300px;
    color: #fff;
}

#balance{
    padding: 10px;
    top: 25%;
    font-size: 20px;
    position: relative;
    text-align: center;
    width: 300px;
    color: #fff;
}

#textBalance{
    padding: 10px;
    top: 28%;
    font-size: 20px;
    position: relative;
    text-align: center;
    width: 300px;
    color: #fff;
}

#obj{
    padding: 10px;
    top: 22%;
    font-size: 30px;
    position: relative;
    text-align: center;
    width: 300px;
    color: #f00;
}

}