/*
* Copyright (c) 2026 Rich Pin Software. All rights reserved.
*
* Author: Richard Pinegar | Rich Pin Software
* URL: https://richpinsoftware.com
* Date: April 2026
* Site Info: Rich Pin Software Official Website
* Content: CSS Reset & Defaults
* Version: 1.0
*/

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

html {
  color-scheme: dark light;
  scroll-behavior: smooth;
}

body { 
  line-height: 1.5;
  min-height: 100dvh;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}