@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css");

:root {
  /* --background:#F1F4F9; */
  --background: #f5f5f7;
  --post-background: white;
  --text-color: rgb(29, 29, 31);
  --text-color: #444;
  --text-color: #333333;
  --text-color: #3a3a3c;
  --text-highlight-color: cornflowerblue;
  --line-color: lightgray;

  /* --background:#111;
    --post-background:#222;
    --text-color:#DDD; */

  --base-font: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, system-ui;
  --code-font: Consolas, "Pretendard", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, system-ui;
}

* {
  font-family: var(--base-font);
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html {
  font-size: 18px;
}

body {
  display: flex;
  flex-direction: row;
  background-color: var(--background);
}

::selection {
  background-color: #abc4f360;
}

img {
  border-radius: 5px;
  max-width: 100%;
  display: block;
  margin: auto;
}

::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-thumb {
  outline: none;
  border-radius: 10px;
  border: 4px solid transparent;
  box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0.2);
  min-height: 100px;
}

::-webkit-scrollbar-thumb:hover {
  border: 4px solid transparent;
  box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0.4);
}

::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: transparent;
}
