:root {
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Jost', sans-serif;
  --font-tertiary: 'Roboto', sans-serif;
}

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

body {
  background-color: #361a16;
  font-family: var(--font-primary);
  color: #ffffff;
  overflow-x: hidden;
}

.page-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4 {
  font-weight: 400;
}