/* reset.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

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

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

/* Reset form elements */
button, input, select, textarea {
    background-color: transparent;
    border: 0;
    padding: 0;
}

/* Make images responsive */
img {
    max-width: 100%;
    display: block;
}


