@import '/fonts/fonts.css';

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2);
  font-family: 'Gilroy', Inter, Avenir, Helvetica, Arial, sans-serif;
}

:root {
	background: #000000;
  color: #ffffff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}


body {
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit }
a:hover { text-decoration: none }
button { background: none; cursor: pointer; border: none; outline: none }
button:hover { outline: none }

.flex { display: flex; }
.full { place-content: center; place-items: center }
.column { flex-direction: column; }
.vertical { place-items: center; }
.horizontal { place-content: center; }