/* Universal Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and HTML Reset */
html, body {
  width: 100%;
  height: 100%;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

/* Remove default list styles */
ul, ol {
  list-style: none;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Links */
a {
  text-decoration: none;
  color: inherit; /* Links inherit color from parent element */
}

/* Images */
img {
  max-width: 100%;
  display: block;
}

/* Form elements */
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  background: none;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* Ensures vertical alignment of inline elements */
*,
*::before,
*::after {
  vertical-align: baseline;
}

/* Define standard heading spacing */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}
