10 lines
150 B
CSS
10 lines
150 B
CSS
|
|
.main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 6rem;
|
|
min-height: 100vh;
|
|
}
|
|
|