34 lines
493 B
CSS
34 lines
493 B
CSS
|
|
body {
|
||
|
|
font-family: 'Times New Roman', Times, serif;
|
||
|
|
line-height: 1.6;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
color: #333;
|
||
|
|
}
|
||
|
|
header {
|
||
|
|
background: #6b8e23;
|
||
|
|
color: white;
|
||
|
|
padding: 1rem 0;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
h1 {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
main {
|
||
|
|
padding: 2rem;
|
||
|
|
}
|
||
|
|
section {
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
}
|
||
|
|
h2 {
|
||
|
|
color: #6b8e23;
|
||
|
|
}
|
||
|
|
footer {
|
||
|
|
background: #6b8e23;
|
||
|
|
color: white;
|
||
|
|
text-align: center;
|
||
|
|
padding: 1rem 0;
|
||
|
|
position: fixed;
|
||
|
|
width: 100%;
|
||
|
|
bottom: 0;
|
||
|
|
}
|