11 lines
200 B
CSS
11 lines
200 B
CSS
|
body {
|
||
|
margin: 0; /* Remove body margins */
|
||
|
}
|
||
|
|
||
|
.page-container {
|
||
|
padding-top: 75.5px;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: stretch;
|
||
|
}
|