nova-web/static/css/base.css
2023-07-21 23:50:17 +02:00

57 lines
824 B
CSS

@import url("https://fonts.googleapis.com/css2?family=Syne:wght@700&display=swap");
html {
scroll-behavior: smooth;
}
body {
background-color: #03060d;
}
nav, main, footer {
max-width: 800px;
margin: 0 auto;
}
*, *::before, *::after {
box-sizing: border-box;
border: none;
color: #f3f3f3;
font-family: "Inter", sans-serif;
}
a {
text-decoration: none;
}
h1, h1 *, h2, h2 *, h3, h3 * {
font-weight: 700;
line-height: 4.8rem;
font-family: "Syne", sans-serif;
}
img {
display: block;
max-width: 100%;
}
p {
line-height: 18px;
line-height: 32px;
}
:focus:not(:focus-visible) {
outline: none;
}
mark {
color: #f3f3f3;
background: #f45a88;
padding: 5px 7px;
border-radius: 5px;
}
@media (max-width: 900px) {
body {
margin: 0 2rem;
}
}/*# sourceMappingURL=base.css.map */