@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  margin: 0 auto;
  margin-top: 70px;
}

* {
  box-sizing: border-box;
}

:root {
  --blue: #3692ff;
  --gray900: #1f2937;
  --gray700: #374151;
  --gray600: #4b5563;
  --gray500: #6b7280;
  --gray400: #9ca3af;
  --gray200: #e5e7eb;
  --gray100: #f3f4f6;
  --gray50: #f9fafb;
  --white: #ffffff;
  --navy: #111827;
  --background-banner: #cfe5ff;
  --lightblue: #e6f2ff;
}

h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 2%;
  color: var(--gray700);
}

p {
  font-size: 24px;
  line-height: 32px;
  margin-top: 24px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  margin: 0 auto;
  padding: 9.5px 200px;
}

section > img {
  max-width: 100%;
}

/*Tablet*/
@media (max-width: 1199px) {
  nav {
    padding: 9.5px 24px;
  }
  h1 {
    font-size: 32px;
    text-align: left;
  }
  h2 {
    font-size: 18px;
  }
  p {
    font-size: 18px;
    line-height: 26px;
  }
}

/*Mobile*/
@media (max-width: 767px) {
  nav {
    padding: 9.5px 16px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 16px;
  }
  p {
    font-size: 16px;
    line-height: 26px;
  }
}
