mirror of
https://github.com/Casvt/MIND.git
synced 2026-02-19 11:54:46 -05:00
23 lines
305 B
CSS
23 lines
305 B
CSS
main {
|
|
height: calc(100% - var(--header-height));
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: clamp(3rem, 12vw, 5rem);
|
|
}
|
|
|
|
p {
|
|
font-size: clamp(1rem, 4.2vw, 1.75rem);
|
|
text-align: center;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-light);
|
|
}
|