/* src/styles.css */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --pink: #e20074;
  --pink-dark: #c4005f;
  --pink-light: #fce8f3;
  --dark: #191919;
  --gray: #6c6c6c;
  --border: #e0e0e0;
  --bg: #f4f4f4;
  --white: #ffffff;
  --success: #00843d;
  --error: #d0021b;
  --warning: #ff8c00;
}
html,
body {
  height: 100%;
  width: 100%;
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
  background: var(--bg);
  color: var(--dark);
}
app-root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}
app-upload-file,
app-user-activity,
app-editor,
app-home,
app-login-page {
  display: flex;
  flex-direction: column;
  flex: 1;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input,
textarea,
select {
  font-family: inherit;
}

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