Селекторы. часть 2. Прокомментируйте код. 100%, но точно есть ошибки.

html,

body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}

body {
min-width: 550px;
min-height: 250px;
padding: 10px;
}

.cards {
width: 500px;
}

.cards li::before {
font-family: “Courier”, monospace;
}

.cards li:not(:nth-of-type(1)) {
margin-left: -15px;
}

.cards li:nth-of-type(n+5),
.cards li:nth-last-of-type(n+7){
width: 36px;
height: 54px;
}

.cards li:nth-of-type(4) {
margin-right: 30px;
margin-left: 15px;
}

.cards li.diamond:not(.nine):not(.king):not(.seven):not(.jack){
background-color: #0099ff;
}

.cards li.seven:not(.club) {
background-color: #ff3300;
}

.cards:last-of-type li:nth-of-type(3n){
background-color: #339933;
}