* {
  padding: 0;
  margin: 0;
  font-family: "Gilroy", sans-serif;
  outline: none !important;
  -moz-border-left-colors: transparent;
  -webkit-tap-highlight-color: transparent;

}
*::-webkit-scrollbar {
  display: none;
}

body {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-behavior: auto;
  background-color: var(--background-color);
  transition: background-color 0.3s ease;
}

:root {
  --background-color: #f3f2f6;
  --mdc-theme-primary: #b71d1c;
  --mdc-theme-secondary: #757575;
}

.dark {
  --background-color: #1a1a1a;
  --mdc-theme-primary: #ed1c24;
  --mdc-theme-secondary: #e0e0e0;
}

@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-regular-webfont.woff");
  src: url("fonts/gilroy-regular-webfont.woff2");
  font-display: swap;
}

@font-face {
  font-family: "GilroyLight";
  src: url("fonts/gilroy-light-webfont.woff");
  src: url("fonts/gilroy-light-webfont.woff2");
  font-display: swap;
}

@font-face {
  font-family: "GilroyMedium";
  src: url("fonts/gilroy-medium-webfont.woff");
  src: url("fonts/gilroy-medium-webfont.woff2");
  font-display: swap;
}

@font-face {
  font-family: "GilroyBold";
  src: url("fonts/gilroy-bold-webfont.woff");
  src: url("fonts/gilroy-bold-webfont.woff2");
  font-display: swap;
}

@layer utilities {
  /* Hide scrollbar for Chrome, Safari and Opera */
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  .no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
}

.leftToRight {
  animation: moveLR 0.5s 1;
  position: relative;
}

@keyframes moveLR {
  from {
    left: -120px;
  }
  to {
    left: 0;
  }
}

.rightToLeft {
  animation: moveRL 0.5s 1;
  position: relative;
}

@keyframes moveRL {
  from {
    right: -120px;
  }
  to {
    right: 0;
  }
}

.bottomToTop {
  animation: moveBT 0.5s 1;
  position: relative;
}

@keyframes moveBT {
  from {
    top: 70px;
  }
  to {
    top: 0;
  }
}

.topToBottom {
  animation: moveTB 0.5s 1;
  position: relative;
}

@keyframes moveTB {
  from {
    bottom: 70px;
  }
  to {
    bottom: 0;
  }
}
