@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
:root {
  --orange01: #ff6a00;
  --orange02: #e85100;
  --mint01: #8be7df;
  --mint02: #69ccc3;
  --yellow01: #ffdb11;
  --yellow02: #ffbb00;
  --yellow03: #f3a703;

  --black01: #453939;
  --white01: #fcfcf1;

  /*사이즈는 메인타이틀 1개 페이지별 title 1개 sub 1개*/

  --size42: 42px;
  --size24: 24px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
input,
button,
textarea,
select {
  font: inherit;
}
body {
  color: var(--black01);
  font-family: "Pretendard Variable";
  overflow-x: hidden;
  transition: padding 0.3s ease-in-out;
}
body::-webkit-scrollbar{
  border-radius: 10px;
  background-color:#EDEDED ;
  width: 10px;
}
body::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background-color: #C4C4C4;
  width: 10px;
}
.container {
  width: 100vw;
  min-height: 100vh;
  height: fit-content;
}