Files
MIND/frontend/static/css/page_not_found.css
2024-02-23 12:37:10 +01:00

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);
}