16 lines
162 B
CSS
16 lines
162 B
CSS
|
body{
|
||
|
background-color: chocolate;
|
||
|
color: blue;
|
||
|
}
|
||
|
|
||
|
h1, h2, p, form{
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
p{
|
||
|
font-size: large;
|
||
|
}
|
||
|
|
||
|
button{
|
||
|
margin-top: 1rem;
|
||
|
}
|