@charset "UTF-8";
@import url(./font.css);
:root {
  --color-black: #000;
  --color-black2: #1d1d1d;
  --color-bg: #121851;
}

html,
body {
  position: relative;
  height: 100%;
  width: 100%;
  font-size: 10px;
  transition: all 0.1s;
}

body {
  background-color: #fff;
  font-family: "Pretendard", "NotoKr", "Malgun Gothic", "맑은 고딕", "Dotum", "돋움", "Gulim", "굴림", sans-serif;
  color: var(--color-black);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

/* Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove default list styles */
ul,
ol,
li {
  list-style: none;
  box-sizing: border-box;
}

/* Set a consistent line-height */
body {
  line-height: 1.5;
}

/* Make images and other media responsive */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
  box-sizing: border-box;
}

/* Inherit font styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
} 
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 1px solid;
  box-sizing: border-box;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  vertical-align: middle;
  box-sizing: border-box;
}

button,
input,
select {
  display: inline-block;
}

button,
input {
  overflow: visible;
}

button {
  background-color: transparent;
  color: inherit;
  border: 0;
  cursor: pointer;
}

a,
a:hover,
a:visited,
a:focus {
  display: block;
  text-decoration: none;
  color: var(--color-black2);
  box-sizing: border-box;
}

div,
span,
section {
  box-sizing: border-box;
}/*# sourceMappingURL=default.css.map */