/* Clean, strong media frame */
.notion-image-block {
border-radius: 8px; /* Slight rounding for modern feel */
border: 1px solid rgba(255, 255, 255, 0.1); /* Very subtle crisp edge */
box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5); /* Deep shadow for depth */
overflow: hidden;
}
/* Apply Inter globally, Russo One for strong accents */
:root {
--font-body: 'Inter', sans-serif;
--font-heading: 'Russo One', sans-serif;
}
body {
font-family: var(--font-body);
background-color: #05070d; /* Your dark theme color */
color: #ffffff;
}
h1, h2, h3, .notion-page-link {
font-family: var(--font-heading);
letter-spacing: 0.5px;
}