/* CSS Reset */
:root {
  --max-w-screen: 1536px;

  --padding-mobile: 16px;
  --padding-tablet: 21px;
  --padding-desktop: 28px;

  --orange: #f58220;
  --gray2: #bbbbbb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  line-height: 1.15; /* Improve readability of just about everything */
  font-size: 16px;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  font-family: "Spoqa Han Sans Neo", sans-serif;
  color: #2c2c2c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0; /* Remove default margin */
}

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

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

button {
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}
