:root {
  --bg-dark: #000000;
  --bg-card: #121212;
  --text-primary: #ffffff;
  --text-secondary: #9a9a9a;

  --accent-green: #4caf00;
  --accent-green-hover: #66ff00;

  --container-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html, body {
  overflow-x: hidden;
  width: 100%;
    scroll-behavior: smooth;

}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* container */

.container {
  width: 90%;
  margin: auto;
  padding: 0 20px;
}

/* responsive images */


/* buttons */

button{
cursor:pointer;
border:none;
background:none;
font-family:inherit;
}

a {
  text-decoration: none;
}

