/* src/styles.scss */
* {
  padding: 0px;
  margin: 0px;
  border: none;
  list-style: none;
  outline: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  position: relative;
}
body {
  font-size: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #4F4F4F;
  background: #fff;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  --extra-padding: 102px;
}

/* angular:styles/global:styles */
