16 lines
276 B
CSS
16 lines
276 B
CSS
|
body{
|
||
|
background-color: aliceblue;
|
||
|
font-family: "Comic Sans MS", Arial, sans-serif;
|
||
|
font-size: 2rem;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
height: 100vh;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|