/* Global Styles - Set common styles for the entire page */
/* Remove default margins and paddings from elements */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, legend, input, textarea, button, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}
/* Remove list item bullets */
li {
    list-style-type: none;
}
/* Remove underlines from links */
a {
    text-decoration: none;
}
/* Remove borders from images, input elements, and buttons */
img, input, button {
    border: none;
    vertical-align: middle;
}
a {
    color: black;
    text-decoration: none;
}
/* Small screens */
@media screen and (max-width: 768px) {
    /* Styles for small screens */
}
/* Medium screens */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* Styles for medium screens */
}
/* Large screens */
@media screen and (min-width: 1025px) {
    /* Styles for large screens */
}
