22 lines
457 B
CSS
22 lines
457 B
CSS
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 40px;
|
|
background-color: #f9f9f9;
|
|
color: #333;
|
|
}
|
|
h1, h2 {
|
|
color: #003366;
|
|
}
|
|
.section {
|
|
margin-bottom: 30px;
|
|
}
|
|
.info {
|
|
font-size: 14px;
|
|
margin-bottom: 10px;
|
|
}
|
|
ul {
|
|
list-style-type: square;
|
|
padding-left: 20px;
|
|
}
|