@import url("header.css");
@import url("footer.css");
@import url("content.css");


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

