16 lines
235 B
CSS
16 lines
235 B
CSS
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.section, .container {
|
|
height: 100%;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
} |