/**
 * GnT — Base styles
 */

@import url("./variables.css");
@import url("./pretendard-fonts.css");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-pretendard);
}

body {
  margin: 0;
  font-family: inherit;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #fff;
}

button,
input,
textarea,
select,
option {
  font-family: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
