13 lines
198 B
CSS
13 lines
198 B
CSS
|
body {
|
||
|
background-color: #f2f2f2; /* light gray */
|
||
|
font-family: Arial, sans-serif;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
color: #00698f; /* blue */
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
font-size: 18px;
|
||
|
margin-bottom: 20px;
|
||
|
}
|