10 lines
185 B
CSS
10 lines
185 B
CSS
.container {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
font-weight: 300;
|
|
font-size: 2em;
|
|
}
|