/* Common: usr 공통 기능 스타일 */

:root {
    --usr-page-max-width: 430px;
}

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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
    background: #f7faf5;
    color: #17251e;
}

button,
input {
    font-family: inherit;
}