/* reset.css */
/* Remove all default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove default body margin */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Remove default list styles */
ul, ol {
    list-style: none;
}

/* Remove default link underline */
a {
    text-decoration: none;
}

/* Remove default button styles */
button {
    background: none;
    border: none;
    cursor: pointer;
}