/* =========================================================
   Reset
========================================================= */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;
    overflow-x:hidden;

}

body{

    background:#181818;
    color:#F5F5F5;
    font-family:"Pretendard","Noto Sans KR",sans-serif;
    line-height:1.5;
    overflow-x:hidden;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;
    background:none;
    cursor:pointer;
    font:inherit;

}

input,
textarea,
select{

    outline:none;
    font:inherit;

}

img{

    display:block;
    max-width:100%;

}

/* =========================================================
   Responsive - Mobile Safe Defaults
   (모바일 320~768px 기준: 입력창 자동 확대 방지 등 전역 안전장치)
========================================================= */

@media (max-width:768px){

    input,
    textarea,
    select{

        font-size:16px;

    }

}