body {
	counter-reset: h2;
}

.img {
    float: left;
    margin: 10px;
    padding-bottom: 2px;
    width: 290px;
}

h2 {counter-reset: h2;
    counter-increment: h2; /* Increment h2 counter */ 
    counter-reset: h3; /* Initialize h3 counter */
}

h2::before {
    content:  counter(h2) ". "; 
    
}


h3 {
    counter-increment: h3; /* Increment h3 counter */
}

h3::before {
    content: counter(h2) "." counter(h3) ". "; /* Display h1, h2, and h3 counters */
}

p, li, .bigger{
font-size: 120%;
}












