@import "tailwindcss";

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

.container {
  max-width: 1200px;
  margin: 0 auto;
}

body {
  font-family: 'Lato', 'Satoshi', sans-serif;
  line-height: 1;
  font-weight: 400;
  overflow-x: hidden;
}

/* default: mobile - no background */
.bg-background {
  background: none;
}

/* medium screens and up */
@media (min-width: 768px) {
  .bg-background {
    background-image: url("/img/background.png");
    background-size: cover;
    background-position: center;
  }
}