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

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Remove default list styling */
ul, ol {
    list-style: none;
}

/* Remove text decoration from links */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove default form styles */
input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    outline: none;
}

/* Style for images to make sure they scale properly */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remove default table styles */
table {
    border-collapse: collapse;
}

th, td {
    padding: 0;
    text-align: left;
}

/* Remove default block styling */
blockquote, pre {
    margin: 0;
}

/* Set a default line height for paragraphs */
p {
    line-height: 1.5;
}
