31 lines
422 B
CSS
31 lines
422 B
CSS
|
:root {
|
||
|
--blue: #0e0620;
|
||
|
--white: #fff;
|
||
|
}
|
||
|
html,
|
||
|
body {
|
||
|
height: 100%;
|
||
|
}
|
||
|
body {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
font-family: "system-ui";
|
||
|
color: var(--blue);
|
||
|
font-size: 1em;
|
||
|
}
|
||
|
h1 {
|
||
|
font-size: 7.5em;
|
||
|
margin: 15px 0px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
h2 {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 768px) {
|
||
|
body {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|