13 lines
305 B
CSS
13 lines
305 B
CSS
section#main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
|
|
background-color: light-dark(var(--light-background-color-ui), var(--dark-background-color-ui));
|
|
padding: 2em;
|
|
font-size: 2em;
|
|
border-radius: 0.5em;
|
|
z-index: 999;
|
|
} |