:root {
  --accent: #710707;
  --accent-active: #9d8665;
  --bg: #030303;
  --transition: all 0.5s ease;
}

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

a {
  text-decoration: none;
}

li, button {
  line-height: 0;
}

li {
  list-style: none;
}

button {
  all: unset;
  cursor: pointer;
  display: inline-block;
}

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

.dark {
  background-color: var(--bg);
}

.dark .section-title {
  color: #fff;
}

.section-title {
  font-family: "Forum", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  letter-spacing: 5px;
  color: var(--accent-active);
}