*{
    padding: 0px;
    margin: 0px;
    font-size: 16px;
    line-height: 1.5;
    vertical-align: baseline;
    box-sizing: border-box;
    outline: none;
    transition: all .3s 0s;
}

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background-color: #eee;
}

::-webkit-scrollbar-thumb {
    background: #666;
}

::-webkit-scrollbar-button {
    display: none;
}


html{
    overflow-x:hidden !important;
}

body{
    font-family: "맑은 고딕", "malgun gothic", "Droid sans", "sans-serif";
    font-weight: 300;
    text-rendering: geometricPrecision;
    text-align: center;
    height: 100vh;
    animation: body .5s linear 1 .5s;
    animation-fill-mode: forwards;
    visibility: hidden;
    opacity: 0;
    transform: skewX(0.0000001deg);
}


@keyframes body{
    0%{
        opacity: 0;
        visibility: hidden;
    }
    100%{
        opacity: 1;
        visibility: visible;
    }
}

img{
    display: inline-block;
    object-fit: none;
    border: 0;
}


ul,ol{
    list-style: none;
    font-size: 0px;
}

ul li,ol li{
    display: inline-block;
}

span, a, strong, b, mark, label{
    display: inline-block;
    line-height: inherit;
    font-size: inherit;
    color:inherit;
    vertical-align: inherit;
}

a{
    text-decoration: none;
}

.wrap{
    width: 100%;
    max-width: 1400px;
    display: inline-block;
}

.flex{
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.pc{
    display: block !important;
}

.mobile{
    display: none !important;
}


@media only screen and (min-width:0px) and (max-width:1400px){
    
    .pc{
        display: none !important;
    }

    .mobile{
        display: block !important;
    }
    
    .wrap{
        padding: 0px 15px;
    }
    
}


@media only screen and (min-width:0px) and (max-width:1200px){
    html{
        font-size: 15px;
    }
}

@media only screen and (min-width:0px) and (max-width:1000px){
    html{
        font-size: 14px;
    }
}

@media only screen and (min-width:100px) and (max-width:800px){
    html{
        font-size: 13px;
    }
}

@media only screen and (min-width:100px) and (max-width:600px){
    html{
        font-size: 12px;
    }
}

@media only screen and (min-width:100px) and (max-width:400px){
    html{
        font-size: 11px;
    }
}



