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

/* Margin reset */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
dt {
  margin: 0;
  padding:0;
  line-height:1;
}

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

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

/* Images */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
}

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

/* Button */
button {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

/* Heading */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Address */
address {
  font-style: normal;
}