@import "reset.css";
@import "/css/fragments/header.css";
@import "/css/fragments/footer.css";
@import url("/css/fonts/pretendardvariable.css");

:root {
  /* color */
  --빨간색상징색: #ed4d48;
  --전체배경색: #fbfaf8;
  --테두리선: #dddddd;
  --글자회색: #5f6b7c;
  --글자색: #333;
  --공감회색: #94969b;
  --페이징기본: #f5f5f5;
  --페이징테두리: #dddddd;
  --인풋필드색: rgba(217, 217, 217, 0.12);
}
* {
  font-family: "Pretendard Variable";
}
body {
  background: var(--전체배경색);
  font-family: 'Pretendard Variable';
}
a {
  text-decoration: none;
  color: inherit;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (min-width: 600px) {
  body {
    width: 600px;
    margin: 0 auto;
  }
}
