*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    
  --primary: #2563eb;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;


}
body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    /* Text ke lines ke beech proper spacing */

    background-color: var(--light);
    color: var(--dark);
    
}
a{
    text-decoration: none;
    color: inherit;
    
}
ul{
    list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
