
* { 
    margin: 0; 
    padding: 0;
}

body {
    background: rgb(180, 181, 179); 
    font-family: "Roboto", sans-serif;
} 

ul {
    list-style: circle;
}

/* Fonts */ 
h1, h2, h3, .preço {
    font-family: 'Roboto Serif', serif; 
    text-transform: uppercase;  
    color: rgb(255, 0, 0);
} 

/* Cabeça do projeto */
header { 
    padding: 32px 0; 
    text-align: center;
} 

/* Sessões */
header,
section { 
    max-width: 300px; 
    margin: 0 auto;
}  

header h1 {
    margin-bottom: 4px; 
    font-size: 28px; 
    line-height: 33px;
}

header p {
    font-size: 14px; 
    line-height: 16px; 

    color: rgb(0, 0, 0);
}

header h1 span { 
    color: rgba(255, 255, 255, 0.947);

}
section h2 { 
    background-color: rgb(33, 32, 32);  
    padding: 8px 16px; 
    text-align: center; 

    margin-bottom: 24px; 
    font-size: 18px;
} 

ul li {
    margin-bottom: 16px; 
    display: flex;
} 

li .details {
    max-width: 240px; 
}  

.details h3 {
    margin-bottom: 8px; 
    font-size: 16px; 
    line-height: 19px; 
} 

.details p {

    color: rgb(0, 0, 0);
    font-size: 14px; 
    line-height: 21px; 
}