
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');


* {
    box-sizing: border-box;
    font-family: "Noto Sans KR", sans-serif;
    word-break: keep-all;
}

body {
    position: relative;

    margin: 0px;
    overflow-x: hidden;
}

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

p {
    margin: 0;
    color: inherit;
}

address {
    font-style: normal;
}

img {
    display: block;
    object-fit: contain;
}

button {
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}