* {
    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;
}

:root {
    --primary: #FFC300;
    --primary_hover: #d1a000;
    --font_color: #e27e7e;
}
a{
    text-decoration: none;
    color: unset;
}
body {
    background: #BE4949;
    width: 100vw !important;
}

.container {
    width: 100vw;
    margin: 0 auto;
    background-color: #862524;
}

.flex_center {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.max_width {
    max-width: 520px;
    margin: 0 auto;
}