:root {
  --page-bg: #ffffff;
  --muted: #999;
  --accent: #222;
  --line: #e9e9e9;
  --danger: #dc2626;
  --color-5: #555;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Pretendard", sans-serif;
  background-color: var(--page-bg);
  color: var(--accent);
  line-height: 1.2;
  width: 100%;
  /* margin: 0 auto;
  min-height: 100vh;
  position: relative; */

  /* 
    display: flex;
      flex-direction: column; */
}

main {
  flex: 1;
}

button {
  border: none;
  background-color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
  cursor: pointer;
}
