:root {
  --color-primary:   #e4c320;
  --color-secondary: #f3ec92;
  --color-black:     #102128;
  --color-white:     #ffffff;

  
  --font-base: "Inter", Arial, sans-serif;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a{
    text-decoration: none !important;
}

