21 lines
304 B
SCSS
21 lines
304 B
SCSS
.main {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #fff;
|
|
font-family: system-ui, sans-serif;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
font-weight: 600;
|
|
margin: 0;
|
|
}
|
|
|
|
p {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
margin: 0.5rem 0 3rem;
|
|
}
|