@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
}

@font-face {
	font-family: 'dinpro';
	src: url('/assets/fonts/DIN Pro/dinpro.otf') format('opentype');
	font-style: normal;
}

@font-face {
	font-family: 'Playbus';
	src: url('/assets/fonts/playbus_bays_gt/PlaybusBaysGTDemo.ttf') format('opentype');
	font-style: normal;
}


.hidden {
  display: none !important;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 20s linear infinite;
}

