/* globalStyle.ts → global.css */
@import "./variables.css";

@font-face {
  font-family: Pretendard;
  src: url('../font/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url('../font/Pretendard-Bold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

html, body {
  width: 100%;
  height: 100%;
  line-height: 160%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: var(--font-pretendard);
  text-decoration: none;
  scrollbar-width: thin;
  z-index: unset;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
