プレビュー
HTML
<section>
<h1>Quiet type</h1>
<p>Cover places the subject in leftover space.</p>
</section>
CSS
:root {
--ink: #241c16;
--paper: #fffaf1;
--accent: #d4552b;
--accent-2: #4338ca;
--on-accent: #fff;
--muted: #6a6156;
--line: #d7ccb8;
--chip: #efe6d6;
}
section {
display: grid;
place-content: center;
min-height: 14rem;
padding: 1.5rem;
border-radius: 1.2rem;
background: var(--ink);
color: var(--on-accent);
text-align: center;
}
h1,
p {
margin: 0;
}
h1 {
font: 600 2.4rem/1 Palatino, Georgia, serif;
}
p {
color: var(--line);
}