/* src/styles.scss */
* {
  font-family: "Poppins", sans-serif;
  padding: 0;
}
button {
  -webkit-user-select: none;
  user-select: none;
}
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0px 75px;
  border-radius: 0px 0px 20px 20px;
  height: 85px;
  margin-bottom: 20px;
}
header .logo {
  font-size: 24px;
  font-weight: bold;
}
header nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
header nav a {
  text-decoration: none;
  color: black;
}
header nav a.active {
  font-weight: bold;
}
header .contact-btn {
  padding: 5px 15px;
  border: 1px solid black;
  background: transparent;
  cursor: pointer;
}
footer {
  margin-top: auto;
  background-color: black;
  color: white;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  float: right;
}
footer .footer-links a:hover {
  text-decoration: underline;
}

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