:root {
  /*? COLORS */
  --color-primary: #f28d3d;
  --color-secondary: #b58863;
  --color-accent: #f8d4b4;
  --color-black: #2e333c;
  --color-background: #191718;
  --color-text: #d3c3b9;
  --color-white: #ffffff;
  --color-footer: #322c2c;

  --background-color: var(--color-background);
  --text-color: var(--color-text);

  /*? SIZES */
  --max-width: 1200px;
  --header-height: 80px;
  --footer-height: 100px;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
}

ul {
  list-style: none;
}

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

.container__section {
  width: 95%;
  max-width: var(--max-width);
  margin: 10rem auto;
  /* min-height: 100dvh; */
}

.main__section {
  width: 95%;
  max-width: var(--max-width);
  min-height: calc(100dvh - (var(--header-height) + var(--footer-height)));
  margin: var(--header-height) auto 0 auto;
}

.active {
  color: var(--color-primary);
}

.button__component {
  width: fit-content;
  padding: 1rem 2rem;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;

  &:active {
    transform: scale(0.95);
  }
}

.title__section {
  color: var(--color-primary);
}
