

:root {
    --color-background: #111827; 
    --color-accent: #a855f7; 
    --color-text: #fff;
    --max-width: 1400px;
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans KR', 'Manrope', 'Apple SD Gothic Neo', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
}

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

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    display: block;
}
ul {
    list-style: none;
  }

  cite, code, dfn, del, em, ins, label, q, span, strong {display: inline-block;}
  select {-webkit-appearance:none;}
  div {display: block;}
  textarea {font-family:'Noto Sans KR', 'Manrope', 'Apple SD Gothic Neo', sans-serif;}