@charset "UTF-8";

/*
-----------------------------
© 2018-now Giulia Bardelli
All rights reserved
🌵 www.giuliabardelli.com
-----------------------------
*/

/*
✏️ NOTE 1/3
General reset
After Eric Meyer
http://meyerweb.com/eric/tools/css/reset/
*/
html, body,
header, nav, menu, footer,
div, span,
h1, h2, h3, h4, h5, h6, p, a,
applet, object, iframe, blockquote,
pre, abbr, acronym, address, big, cite, code,
del, dfn, em, 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, tbody, tfoot, thead, tr, th, td,
input, select, button, textarea, /* Additional Form reset */
article, caption, aside, canvas, details, embed,
figure, figcaption, hgroup,
output, ruby, section, summary,
img, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%; 	/* Font 1/4 */
	font-family: inherit; 	/* Font 2/4 */
	font: inherit; 	/* Font 3/4 */
	line-height: 1; /* Font 4/4 */
	vertical-align: baseline; /* or middle */
	text-decoration: none;
	text-transform: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
:active,
:focus {
	outline: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*
✏️ NOTE 2/3
Form reset
After https://gist.github.com/anthonyshort/552543
*/
input,
select,
button,
textarea {
	display: inline-block;
	height: 1em;
	white-space: normal;
	background: none;
}
/* Remove outer glow in Webkit */
input:focus,
select:focus,
button:focus {
	outline: 0;
}
/* Box Sizing Reset */
input,
textarea {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-style: none;
	padding: 0;
}

/* 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;
}
/* Make webkit render the search input like a normal text field */
input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
}
/* Buttons */
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
	/* Fix IE7 display bug */
	overflow: visible;
	width: auto;
}
textarea {
	/* Turn off scroll bars in IE unless needed */
	overflow: auto;
}
/* Remove inner padding Chrome Safari macOS */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
/*
✏️ NOTE 3/3
Additional img reset
*/
img {
  border-style: none; /* Remove border when inside links in IE 6/7/8/9 and Firefox 3 */
	-ms-interpolation-mode: bicubic; /* Improve quality when scaled in IE 7 */
	max-width: 100%;
	height: auto;
}
