/* Basic CSS Reset */

body, h1, h2, h3, p, ul, ol, li, figure, figcaption, blockquote, dl, dd, dt {
    padding: 0%;
}

body {
    font-family: sans-serif; /* Set a default font-family */
  
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

