@font-face {
  font-family: Noto Sans;
  src: url('./fonts/static/NotoSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Noto Sans;
  src: url('./fonts/static/NotoSans-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Noto Sans;
  src: url('./fonts/static/NotoSans-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
}
html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0 0 48px;
  color: #121212;
  font-family: Noto Sans, sans-serif;
  font-size: 16px;
  background: url('./images/cover_hfb.jpg') no-repeat 70% top;
  background-attachment: fixed;
  background-size: cover;
  background-color: #eaeae6;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #efeae6;
  border-radius: 0;
}
::-webkit-scrollbar-thumb {
  background: #007d48;
  border-radius: 0;
  border: 2px solid #007d48;
}
::-webkit-scrollbar-thumb:hover {
  background: #007d48;
}
app-root {
  display: block;
  height: 100%;
}
@media only screen and (max-width: 576px) {
  body {
    background: linear-gradient(#eaeae6cc, #eaeae6cc),
      url(/images/cover_hfb.jpg) no-repeat 70% top;
    background-attachment: fixed;
    background-size: cover;
    padding: 0 0 150px;
  }
}
