/**
 * =========================================================
 * 파일명 : reset.css
 * 위치 : /www/assets/css/base
 * ---------------------------------------------------------
 * 목적
 * - 브라우저 기본 스타일 초기화
 *
 * 담당 기능
 * - Margin/Padding 초기화
 * - Box-sizing 통일
 * - 기본 요소 초기화
 * =========================================================
 */

/* =========================
   Reset
========================= */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================
   HTML / Body
========================= */

html{
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
}

body{
    min-height:100vh;
}

/* =========================
   Media
========================= */

img,
picture,
video,
canvas,
svg{
    display:block;
    max-width:100%;
}

/* =========================
   Form
========================= */

input,
button,
textarea,
select{
    font:inherit;
    border:0;
    outline:none;
    background:none;
}

/* =========================
   Link
========================= */

a{
    color:inherit;
    text-decoration:none;
}

/* =========================
   List
========================= */

ul,
ol{
    list-style:none;
}

/* =========================
   Table
========================= */

table{
    border-collapse:collapse;
    border-spacing:0;
}