/* =========================================
   RESET CSS for Bootstrap Projects
   Author: ChatGPT
   Purpose: Consistent rendering across browsers
========================================= */
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


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

/* Remove default margin & padding */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup,
tt, var,
b, u, i,
center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {

  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display reset */
article, aside, details, figcaption, figure,
footer, header, main, nav, section {
  display: block;
}

/* body */
body {
  font-family:"Noto Sans KR", "Roboto",   sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #212529;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* Lists */
ol, ul {
  list-style: none;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: middle;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* Form elements */
input, button, textarea, select {
  font: inherit;
  margin: 0;
}

/* Buttons */
button {
  border: none;
  background: none;
  cursor: pointer;
}

/* Remove outline only when needed */
:focus {
  outline: none;
}

/* Prevent textarea resize breaking layout */
textarea {
  resize: vertical;
}

/* Remove default fieldset styles */
fieldset {
  border: none;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}