:root {
  --primary: linear-gradient(to right, #bb882d, #f7e17c, #bb882d);
  --secondary: linear-gradient(to right, #1a1f2b, #2a2f3d);
  --text: #f3fcf0;
  --bg: linear-gradient(to right, #0d0d0d, #1a1f2b);
  --dark: #000000;
  --red: #eb2a3a;
  --yellow: #fde047;
}

body {
  background: var(--secondary);
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.bg-color {
  background: var(--primary);
}

.text-color {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.times-roman {
  font-family: "Times New Roman", Times, serif;
}
