18 lines
324 B
CSS
18 lines
324 B
CSS
|
body
|
||
|
{
|
||
|
background-color:#eeeeee;
|
||
|
font-family: Arial, sans-serif;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
height: 100vh;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
text-align: center;
|
||
|
padding: 30px;
|
||
|
border-radius: 10px;
|
||
|
background-color: #ffffff;
|
||
|
box-shadow: 0 4px 6px rgba(39, 39, 39, 0.1);
|
||
|
}
|