46 lines
601 B
CSS
46 lines
601 B
CSS
:root {
|
|
--bg: #f5f1e8;
|
|
--text: #1f1b16;
|
|
--accent: #c46b2d;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: "Space Grotesk", system-ui, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
}
|
|
|
|
a {
|
|
color: var(--accent);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
padding: 24px;
|
|
}
|
|
|
|
.hero {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
gap: 16px;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
}
|
|
|
|
.card {
|
|
border: 1px solid #e3d8c5;
|
|
border-radius: 16px;
|
|
padding: 16px;
|
|
background: #fffaf2;
|
|
}
|