25 lines
390 B
CSS
25 lines
390 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
color: #333;
|
|
margin: 20px;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Brush Script MT', cursive;
|
|
font-size: 2.5em;
|
|
background-color: #708090;
|
|
color: white;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
h2 {
|
|
font-family: 'Brush Script MT', cursive;
|
|
font-size: 1.8em;
|
|
color: #708090;
|
|
font-style: italic;
|
|
margin-top: 30px;
|
|
}
|
|
|