@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200..800&display=swap");

:root {
  --primary-color: #be1003;
  --white: #ffffffff;
  --black: #000000ff;
  --seal-brown: #4f2304ff;
  --border-radius: 4px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  border-radius: 20px;
  border: 3px solid #f1f1f1;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--seal-brown);
}

::-webkit-scrollbar-thumb {
  background-color: var(--seal-brown);
  border-radius: 1px;
  border: 3px solid #f1f1f1;
}

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

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 10vw;
}
