@charset "utf-8";

/* 본인 폰트로 변경하기
- 기본 폰트 1개
- 포인트 폰트 1개
*/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
}
ul,
ol {
    list-style: none;
}
a {
    display: block;
    text-decoration: none;
    color: black;
}
strong {
    display: block;
}
address {
    font-style: normal;
}
h1 {
    font-size: 32px;
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 38px;
}
p {
    font-size: 18px;
    line-height: 1.8;
}

header,
nav, 
main,
article,
section,
aside,
footer {
    display: block;
}