body {
  font-family: var(--font-family), serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}
a {
  display: inline-block;
  transition: all 0.2s ease;
}

a:hover, a:focus, a:active {
  transform: scale(1.2);
  transition: all 0.2s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  padding-bottom: 1rem;
}

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.6rem;
}
h4 {
  font-size: 1.35rem;
}
h5{
  font-size: 1.2rem;
}
h6 {
  font-size: 1.05rem;
}

p {
  padding-bottom: 0.5rem;
}

/* WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-dark); /* Vibrant color for the thumb */
  border-radius: 6px;
  border: 3px solid transparent; /* Adds spacing around thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-dark); /* Darker shade on hover */
}

::-webkit-scrollbar-track {
  background: var(--color-light); /* Light background for track */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-dark) var(--color-light);
}

