* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-touch-callout: none;
}

html {
    font-size: 16px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Segoe UI, Arial, Roboto, PingFang SC, miui, Hiragino Sans GB, Microsoft Yahei, sans-serif;
}
a{
    text-decoration: none;
    color: unset;
}
:root {
    --primary: #243C5B;
    --primary_hover: #46b335;
    --font_color: #7E92B1;
}

body {
    background: #0A1020;
    width: 100% !important;
}

.flex_center {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.max_width {
    max-width: 520px;
    margin: 0 auto;
}
.container{
    width: 100vw;
    margin: 0 auto;
    background-color: #090F1F;
}