33 lines
546 B
CSS
33 lines
546 B
CSS
|
body{
|
||
|
|
||
|
background-color: lightgoldenrodyellow;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
body p{
|
||
|
text-align: center;
|
||
|
margin-top: 100px;
|
||
|
color: black;
|
||
|
font-weight: bold;
|
||
|
font-family: arial;
|
||
|
font-size: 50px;
|
||
|
}
|
||
|
body > ul{
|
||
|
text-align: center;
|
||
|
margin-top: 90px;
|
||
|
color: navy;
|
||
|
font-weight: bold;
|
||
|
font-family: arial;
|
||
|
font-size: 30px;
|
||
|
|
||
|
}
|
||
|
|
||
|
#buttons{
|
||
|
|
||
|
margin-top: 50px;
|
||
|
text-align: center;
|
||
|
|
||
|
|
||
|
}
|