/* CSS Reset Style Page */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
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,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  min-height: 100vh;
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* a-style */
a {
  color: #fff;
  text-decoration: none;
  outline: none;
}
a:hover,
a:active {
  text-decoration: none;
}

/* Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* img-style */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1rem;
}

/* Common font (Pretendard)*/
body {
  font-family:
    "Pretendard Variable",
    Pretendard,
    -apple-system,
    Roboto,
    "Helvetica Neue",
    sans-serif;
  font-style: normal;
  font-weight: 400;
}

/* input-style */
input {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-appearance: none; /* For older Webkit/Blink browsers */
  -moz-appearance: none; /* For older Firefox browsers */
  appearance: none; /* Standard property */
}

/* button-style */
button {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  width: auto;
  overflow: visible;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Corrects font smoothing for webkit and moz */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable input types in iOS */
  -webkit-appearance: none;
}

/* Color Variable */
:root {
  /* Primary color */
  --Primary-100: #3692ff;
  --Primary-200: #1967d6;
  --Primary-300: #1251aa;
  /* Secondary color */
  --Secondary-900: #111827;
  --Secondary-800: #1f2937;
  --Secondary-700: #374151;
  --Secondary-600: #4b5563;
  --Secondary-500: #6b7280;
  --Secondary-400: #9ca3af;
  --Secondary-300: #e5e7eb;
  --Secondary-200: #e5e7eb;
  --Cool-Gray-100: #f3f4f6;
  /* Error color */
  --error-red: #f74747;
}
