/* === RESET / NORMALIZE PEŁNY === */

/* Box model */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Document */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}

/* Text */
p {
  margin: 0;
}
strong, b {
  font-weight: bolder;
}
em, i {
  font-style: italic;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
}

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

/* Media */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
th {
  font-weight: bold;
  text-align: left;
}

/* Forms */
button, input, select, textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}
button, input[type="button"], input[type="submit"] {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
}
textarea {
  resize: vertical;
}
select {
  background: none;
  border: none;
}

/* Quotes */
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
}

/* Misc */
hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1rem 0;
}