@font-face {
  font-family: "Cal Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("./assets/fonts/CalSans-SemiBold.woff2") format("woff2"),
    url("./assets/fonts/CalSans-SemiBold.woff") format("woff"),
    url("./assets/fonts/CalSans-SemiBold.ttf") format("truetype");
}

body {
  background-color: #f0f0f0;
  background-image: url('/public/assets/noise.svg');
  font-family: inter;
  color: #121212;
  margin: 0;
  box-sizing: border-box;
}

/* Default styles for section container */
.section-container {
  width: 100%; /* Full width of the viewport */
  padding: 56px 16px; /* Padding around the content */
  box-sizing: border-box; /* Ensure padding is included in the width */
}

/* Default styles for content container */
.content-container {
  max-width: 1400px; /* Maximum width for the content container */
  width: 100%; /* Full width of the viewport */
  margin: 0 auto; /* Center the content horizontally */
  box-sizing: border-box; /* Ensure padding is included in the width */
  overflow: hidden; /* Prevent content from overflowing the container */
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: #121212;
}