For default all elements has properties in this case ul
:
ul {
display: block;
list-style-type: disc;
margin-before: 1em;
margin-after: 1em;
margin-start: 0;
margin-end: 0;
padding-start: 40px;
}
You need to reset those properties : Try
ul {
margin:0;
padding:0;
}