/* 공통적으로 들어가는 스타일 */

:root{
    --main-color:#E7765A;
}

html{
    font-size: 20px;
    /* 1rem = 20px */
    font-family: "Pretendard",sans-serif;
    scroll-behavior: smooth;
}

h1{
    font-size: 1.3rem;
    /* font-weight: 700; */
    font-family: "Purple Purse", serif;
}

h2{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

h3{
    font-size: 1.1rem;
    font-weight: 700;
}
    
p{line-height: 140%;}
.detail{font-size: 0.9rem;}
button{font-size: 0.8rem;}

strong{
    color: var(--main-color);
    font-weight: inherit;
}

.commonFrame{
    width: 1400px;
    margin: 0 auto;
    /* padding-top: 3rem; */
}
em{
    font-style: normal;
}
