/* Reset all browser settings */
/* Apply a consistent box model */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
ul, ol {
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 1em;
    font-weight: normal;
}
a {
    text-decoration: none;
}
button a {
    text-decoration: none;
}
input, textarea, button {
    border: none;
    background: none;
}
button {
    padding: 0;
    cursor: pointer;
    background: none;
}
img {
    max-width: 100%;
    height: auto;
}
table {
    border-collapse: collapse;
    width: 100%;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
}
body, html {
    padding: 0;
    margin: 0;
    height: 100%;
}
