You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
536 B
CSS
44 lines
536 B
CSS
html {
|
|
font-family: Noto Sans, sans-serif;
|
|
background-color: #f1f1f1;
|
|
color: #0f0f0f;
|
|
}
|
|
|
|
body {
|
|
min-height: 1dvh;
|
|
min-height: 1vh;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
html {
|
|
background-color: #0f0f0f;
|
|
color: #f1f1f1;
|
|
}
|
|
}
|
|
|
|
p {
|
|
line-height: 1.5rem;
|
|
}
|
|
|
|
.banner {
|
|
font-size: 2em;
|
|
margin: 0 auto 4rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.content {
|
|
margin: 0 auto;
|
|
max-width: 800px;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
}
|
|
|
|
.centered {
|
|
margin: auto;
|
|
}
|