@font-face {
  font-family: "Dongle";
  src: url("./assets/fonts/Dongle-Regular.ttf") format("truetype");
  font-style: normal;
}

body {
  background: url("./assets/home_screen/screen_1_bg.png") no-repeat center
    center fixed;
  background-color: black;
  background-size: cover;
  font-family: "Dongle", sans-serif;
  margin: 0;
  padding: 0;
}

.bold-text {
  font-weight: 700;
}


/* for custom scrollbar */
.scrollbar-hidden {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.scrollbar-hidden::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}


/* for autocomplete in search */
#autocomplete-results {
  max-height: 200px;
  overflow-y: auto;
}