@import url('seo.css');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

body {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 300;
  margin: 0;
  padding: 0;
  color: white;
  font-size: 1.25rem;
}

/* General Scrollbar Styling */
html::-webkit-scrollbar {
  width: 13px;
  /* Width of the scrollbar */
}

html::-webkit-scrollbar-track {
  background: #1c1c1e;
  /* Dark background for the track */
  border-radius: 5px;
  /* Rounded track edges */
}

html::-webkit-scrollbar-thumb {
  background: #39393a;
  /* Thumb color */
  border-radius: 5px;
  /* Rounded thumb edges */
  border: 2px solid #1c1c1e;
  /* Creates a gap effect around the thumb */
}

html::-webkit-scrollbar-thumb:hover {
  background: #dd023c;
  /* Bright blue on hover */
}

/* For Firefox scrollbar styling */
body {
  scrollbar-width: thin;
  /* Thin scrollbar */
  scrollbar-color: #39393a #1c1c1e;
  /* Thumb and track colors */
}