@charset "utf-8";

/* Reset CSS */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    word-break: keep-all;

}

a{
    text-decoration: none;
    color: #222;
}

table{
    border-collapse: collapse;
}

ul li,
ol li{
    list-style: none;
}

address{
    font-style: normal;
}

img{
    max-width: 100%;
}

strong,
b{
    font-family: 'Poppins','Pretendard-Bold';
    font-weight: 700;
}

::-moz-selection{
    background: rgba(19, 174, 103, 0.6);
    color: #fff;
}

::-webkit-selection{
    background: rgba(19, 174, 103, 0.6);
    color: #fff;
}

::selection{
    background: rgba(19, 174, 103, 0.6);
    color: #fff;
}