@font-face {
  font-family: 'Antonio-Regular';
  src: url('/fonts/Antonio-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --main-color: #000000;
  --secondary-color: #222;
  --border-color: #989898;

  --grid-columns: repeat(12, 1fr);
  --grid-gap: 1.25rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Antonio-Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: white;
  background-color: var(--main-color);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}