19 lines
307 B
CSS
19 lines
307 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
padding: var(--Spacing-x2);
|
|
text-align: center;
|
|
}
|
|
|
|
.container .heading {
|
|
margin-bottom: var(--Spacing-x1);
|
|
}
|
|
|
|
.messageContainer {
|
|
max-width: 435px;
|
|
text-align: center;
|
|
}
|