/* =========================
   RESET & BASIS
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    
}

body {
    background: #ffffff;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
    overflow-y: auto;
}