The simple line will change the behaviour on the whole page
ul li:first-child {
color: #0fbcf3;
}
ul li:last-child {
background-color: #0fbcf3;
}
ul li:nth-child(odd){
border: blue 1px solid;
}
ul li:first-letter{
font-size: 2rem;
}