
/* Based on the concept of a reset CSS script from this course */

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    line-height: 1;
    font-size: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav ul li a {
    text-decoration: none;
}

nav ul {
    list-style-type: none;
}

li {
    list-style-position: inside;
}
