/*
All the basic foundational styles need for each website.
This is a Intall-Full-File-To-Each-Site System.
*/

*, ::after, ::before {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  line-height: 1.5;
  font-size: 1rem;
}

body {
  color: #000;
  font-weight: normal;
  padding: 0;
  margin: 0;
  font-size:1.1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}