@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Display:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
  scrollbar-width : none !important;
  z-index: 0;
  padding: 0;
  margin: 0;
}

html{
  height: 100%;
  min-height : 100%;
  scroll-behavior: smooth;
}
body{
  height: 100%;
  min-height: 100%;
  font-family: Noto Sans Display;
}
.background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../assets/main_background/main_background_small.jpg) no-repeat center;
  background-size: cover;
  filter: brightness(0.6);
}
/* Handle different sources depending on screen size */
/* Mobile */
@media only screen and (min-width: 768px) {
  .background {
    background: url(../assets/main_background/main_background_small.jpg) no-repeat center;
    background-size: cover;
  }
}
/* Low DPI Desktop */
@media only screen and (min-width: 1024px) {
  .background {
    background: url(../assets/main_background/main_background_medium.jpg) no-repeat center;
    background-size: cover;
  }
}
/* High DPI Desktop */
@media only screen and (min-width: 1440px) {
  .background {
    background: url(../assets/main_background/main_background_large.jpg) no-repeat center;
    background-size: cover;
  }
}


