13 lines
241 B
CSS
13 lines
241 B
CSS
body {
|
|
margin: 0; /* Remove body margins */
|
|
background-color: rgb(250, 248, 248);
|
|
}
|
|
|
|
.page-container {
|
|
padding-top: 83px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: stretch;
|
|
}
|