20 lines
286 B
CSS
20 lines
286 B
CSS
|
html {
|
||
|
font-family: Arial, sans-serif;
|
||
|
background-color: #f4f4f4;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
width: 80%;
|
||
|
margin: 0 auto;
|
||
|
padding: 20px;
|
||
|
background: #fff;
|
||
|
border-radius: 8px;
|
||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
font-size: 80px;
|
||
|
color: blue !important;
|
||
|
}
|