32 lines
486 B
CSS
32 lines
486 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap');
|
|
|
|
:root {
|
|
--primary-color: #002992;
|
|
--primary-color-no-focus: #abbbdf;
|
|
--color: white;
|
|
}
|
|
|
|
* {
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
body {
|
|
font-size: 28px;
|
|
font-family: 'Noto Serif', serif;
|
|
margin: 0;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
gap: 0;
|
|
margin: 1rem 1rem 0;
|
|
color: var(--color);
|
|
}
|