

/*
** General Styles for HTML tags
*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
}

body {
  min-width: 1258px;
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #666666;
}

html, body {
  height: 100%;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

a {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

a, button {
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

ul {
  margin: 0;
  list-style-type: none;
}


h1, h2, h3, h4, h5, h6 {
  color: #002359;
  font-weight: 600;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

h2 {
  font-size: 30px;
  text-transform: uppercase;
}

h3 {
  font-size: 18px;
}

p {
  color: #666;
  line-height: 26px;
  text-transform: none;
  font-weight: 400;
}