/* A minimal, modern CSS reset */

/* Apply a natural box layout model to all elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding on the body and set a default line-height */
body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

/* Make images and other media easier to work with */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove default list styles */
ul,
ol {
  padding: 0;
  list-style: none;
}