/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Remove underline from hyperlinks */
a {
    text-decoration: none;
    color: inherit; /* Ensures the link inherits the color from its parent element */
}
