/* src/styles.css */
:root {
  --primary-color: #77e51f;
  --secondary-color: #001a2d;
  --text-dark: #1b1b1b;
  --text-muted: #666666;
  --bg-light: #f0f2f5;
  --font-main: "Nunito Sans", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-main);
  background-color: #fff;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 800;
}
button,
input,
select,
textarea {
  font-family: var(--font-main);
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
