@import url('./styles/1-intro.css');
@import url('./styles/2-header.css');
@import url('./styles/3-main-top.css');
@import url('./styles/4-about.css');
@import url('./styles/5-html-css.css');
@import url('./styles/6-company.css');
@import url('./styles/7-access.css');
@import url('./styles/8-contact.css');
@import url('./styles/8-footer.css');
@import url('./styles/contact-page.css');

@import url('https://fonts.googleapis.com/css2?family=Geologica&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');


/* ===== 변수 구간 ===== */
:root {
  /* 
  --color-main: #FF4200; 
  --color-sub: #00A200;
  --color-dark: #2F4858;
  --color-emph: #F10F5F;
  --color-text: #281812;
  --color-lighter: #DC9C86;
  --color-light-bd: #FFE6D6;
  --color-light-bg: #FFF5ED;
  */

  /* --font-code: 'Nanum Gothic Coding', monospace;; */

  --font-size-title: 24px;
  --font-size-subtitle: 24px;
  --font-size-tag: 16px;
  --font-size-larger: 16px;
  --font-size-text: 14px;

  --height-toolbar: 72px;
}

/* ===== 리셋 구간 ===== */

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;

  /* 개발용 설정 */
  /* min-height: 150vh; */
}

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

p {
  margin: 0;
}

em {
  font-weight: inherit;
  font-style: normal;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

dl { margin: 0; }
dd {
  margin: 0;
  display: inline;
}

figure { margin: 0; }

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

th { font-weight: normal; }

address { font-style: inherit; }

body {
  background-color: black;
  min-height: 100vh;
}

strong {
  font-weight: 600;
  color: #92b2ff;
}



/* screen reader */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

