@charset "UTF-8";

/* src/styles.css */
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-style: normal;
  src: url(/fonts/poppins/Poppins-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  font-style: normal;
  src: url(/fonts/poppins/Poppins-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  font-style: normal;
  src: url(/fonts/poppins/Poppins-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-weight: 700;
  font-style: normal;
  src: url(/fonts/poppins/Poppins-Bold.ttf) format("truetype");
}
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #05266d;
  color: #111111;
  overflow: hidden;
}
app-root {
  display: block;
  width: 100%;
  height: 100vh;
}

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