/* Reseting margin and padding for some tags */

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
div,
header,
section,
aside,
footer,
dl,
dt,
dd,
ul,
li,
p,
form, label, input, textarea {
    padding: 0;
    margin: 0;
}

li {
	list-style: none;
}

/* Here starts the styling*/

