@import "https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap";

/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: "Poppins", sans-serif;
}
img {
  max-width: 100%;
  height: auto;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .logo-img {
    height: 32px;
  }
}
.sidebar .logo-img {
  height: 36px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #C41E3A;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8B0000;
}

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