@charset "utf-8";
/*
*--------------------------------------------*
|                    Reset                   |
*--------------------------------------------*
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 20px auto;
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow: auto;
}

a {
  text-decoration: none;
  color: #333;
}

ul, li, ol {
  list-style: none;
}

h1 {
  height: 82px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
}

h2 {
  font-size: 18px;
  font-weight: 700;
}

p {
  font-size: 16px;
  color: #202020;
}

input, select, button, input[type="radio"]:not() {
  border: 0;
  background: transparent;
  appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  /* Chrome, Safari, Edge */
}

button {
  cursor: pointer;
  font-family: "Noto Sans Korean", sans-serif;
}
