@charset "UTF-8";

/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: white;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-content {
  flex: 1;
}
.icon-search:before {
  content: "\1f50d";
}
.icon-cart:before {
  content: "\1f6d2";
}
.icon-facebook:before {
  content: "f";
  font-family: Arial;
}
.icon-twitter:before {
  content: "t";
  font-family: Arial;
}
.icon-instagram:before {
  content: "\1f4f7";
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

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