19 lines
243 B
CSS
19 lines
243 B
CSS
|
body {
|
||
|
font-family: 'Roboto', sans-serif;
|
||
|
background-color: #f9f9f9;
|
||
|
margin: 0;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
h1, h2, h3 {
|
||
|
color: #0f1878; /* Bleu */
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
line-height: 1.6;
|
||
|
}
|
||
|
|
||
|
.email {
|
||
|
font-weight: bold;
|
||
|
color: #1631c8;
|
||
|
}
|