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

/* Margin */
* {
  margin: 0;
}

/* HTML5 display reset */
article, aside, footer, header, section, main {
  display: block;
}

/* Base body */
html, body {
  width: 100%;
  height: 100%;
  font-family: inherit;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* Lists */
ol, ul {
  list-style: none;
  padding: 0;
}

/* Anchors */
a {
  text-decoration: none;
  color: inherit;
}

/* Images */
img, picture, video, canvas {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Forms */
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Button cursor */
button {
  cursor: pointer;
}

/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Utilities */
input:focus, button:focus, textarea:focus {
  outline: none;
}



img {
    border: none;
    vertical-align: bottom;
    width: auto;
    max-width: 100%;
    height: auto;
}
