@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&family=Roboto:wght@400;700&display=swap');

* {
  /* outline: 1px dotted turquoise; */
  /* outline: 1px dotted salmon; */
  box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
  font-family: 'Roboto','Noto Sans KR', sans-serif;
  background-color: black;
}

:root {
  /* color */
  --black: #000000;
  --white: #ffffff;
  --gray_a: #aaaaaa;
  --gray_f5: #f5f5f5;
  --line: #dddddd;

  /* fontSize */
  --font-size-S: clamp(1.2rem, 2vw, 1.4rem);
  --font-size-M: clamp(1.4rem, 2.5vw, 1.6rem);
  --font-size-L: clamp(2rem, 5vw, 3rem);
}

.br_mobile{
  display: none;
}

@media (max-width: 768px) {
  .br_mobile {
    display: block;
  }
}