/* base.css */
* {
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

body {
    margin: 0;
    font-family: var(--font-family); /* Use the defined font family */
    font-weight: var(--font-weight); /* Use the defined default weight */
    font-style: var(--font-style); /* Use the defined style */
    background-color: var(--primary-color);
}
/* Hide the scrollbar */
body::-webkit-scrollbar {
  display: none;
}

button {
    padding: 0;
    padding-block: 0;
    padding-inline: 0;
}

p, h1, h2, h3 {
    margin: 0; /* Remove default margins from headings */
}