/* src/css/index.css */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: 0.4s ease;
}

div#cursor {
  z-index: 10;
  pointer-events: none;
  position: fixed;
  background-color: transparent;
  border: 2px solid #3e64358e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.25s ease-out;
}

html, body {
  scroll-behavior: smooth;
  font-family: var(--textFont);
  color: var(--logoColor);
  line-height: 1.6;
}

body::-webkit-scrollbar {
  width: 12px;      
  transition: 2s ease;         
}

body::-webkit-scrollbar-track {
  background: var(--logoColor);        
}

body::-webkit-scrollbar-thumb {
  background-color: #255319; 
  border-radius: 48px;   
  border: 3px solid var(--logoColor);
}