
/*Aqui eu defino o Style Guide da Tipografia do projeto */

h1 {
    font-size: 5.6rem;    
}

h2 {
    font-size: 4.8rem;    
}

h3 {
    font-size: 4rem;    
}

h4 {
    font-size: 2.8rem;        
}

h5 {
    font-size: 2.4rem;      
}

h6 {
    font-size: 2.4rem;      
}

p {
    font-size: 1.8rem;        
    line-height: 150%;
}

/*Agora otimizamos o CSS com base nas repetições acima, economizando linhas de código */

h1, h2, h3, h4, h5, h6 {
    font-family: Sora;
    line-height: 120%;
}

h1, h2, h3, h4 {    
    font-weight: 700; 
}

h5, h6 {
    font-weight: 600;  
}