@charset "utf-8";

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

/* 모든 요소에 대해 텍스트 선택 막기 */
* {
    user-select: none;
}

li,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.fixclear,
.fixclear::after,
.fixclear::before {
    clear: both;
    content: '';
    display: block;
}
