/* === reset.css === */

/* Box sizing and default element reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove default list styles */
ul, ol {
  list-style: none;
}

/* Remove default text decoration and color from links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default button styles */
button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

/* Remove default input and textarea styles */
input,
textarea {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  resize: none;
}

/* Remove default table styles */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Set images to display block by default */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Remove default fieldset and legend styles */
fieldset {
  border: none;
}

/* Remove default quotes from blockquote and q */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
}

/* Reset html and body */
html, body {
  width: 100%;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* Remove outline on focus for accessibility-friendly approach */
:focus {
  outline: none;
}

/* Reset anchor focus style */
a:focus {
  outline: none;
}

/* Default box-sizing for pseudo-elements */
*::before,
*::after {
  box-sizing: inherit;
}

/* Remove default select styles */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* Default root settings */
:root {
  font-size: 16px;
}
