/* // From normalise.css */

/* // Show the overflow in IE. */
button,
input {
  overflow: visible;
}
/* // Remove the inheritance of text transform in Edge, Firefox, and IE. */
button,
select {
  text-transform: none;
}
/* // Correct the inability to style clickable types in iOS and Safari. */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/* // Remove the inner border and padding in Firefox. */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/* // Restore the focus styles unset by the previous rule. */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/* // Correct the padding in Firefox. */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/* // 1. Correct the text wrapping in Edge and IE. */
/* // 2. Correct the color inheritance from `fieldset` elements in IE. */
/* // 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers. */
legend {
  /* // 1 */
  box-sizing: border-box;
  /* // 2 */
  color: inherit;
  /* // 1 */
  display: table;
  /* // 1 */
  max-width: 100%;
  /* // 3 */
  padding: 0;
  /* // 1 */
  white-space: normal;
}
/* // Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress {
  vertical-align: baseline;
}
/* // Remove the default vertical scrollbar in IE 10+. */
textarea {
  overflow: auto;
}
/* // 1. Add the correct box sizing in IE 10. */
/* // 2. Remove the padding in IE 10. */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
/* // Correct the cursor style of increment and decrement buttons in Chrome. */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/* // 1. Correct the odd appearance in Chrome and Safari. */
/* // 2. Correct the outline style in Safari. */

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
/* // Remove the inner padding in Chrome and Safari on macOS. */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/* // 1. Correct the inability to style clickable types in iOS and Safari. */
/* // 2. Change font properties to `inherit` in Safari. */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* // Interactive */
/* ============================================================ */

/* // Add the correct display in Edge, IE 10+, and Firefox. */
details {
  display: block;
}
/* // Add the correct display in all browsers. */
summary {
  display: list-item;
}
/* // Misc */
/* // ========================================================================== */ */

/* // Add the correct display in IE 10+. */
template {
  display: none;
}
/* // Add the correct display in IE 10. */
[hidden] {
  display: none;
}

/* // http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* // HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button, input {
  display: inline-block;
  padding: 0;
  border: none;
  background-color: transparent;
  color: inherit;
	text-decoration: none;
	font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: background 250ms ease-in-out,
              transform 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* // My extras */
/* // p + p { */
/* //   margin-top: 1em; */
/* // } */
/* // Removing link color */
a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
/* //This will make anchor links take you smoothly there, instead of teletransporting you */ */
html {
	scroll-behavior: smooth;
}
/* // This next bit resets the box-sizing, the *better* way. For more info: */
/* // https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
/* // https://css-tricks.com/almanac/properties/b/box-sizing/ */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
/* // Que les imatges siguin com a màxim el seu tamany original */
img {
  max-width: 100%;
  height: auto;
}
