21 lines
408 B
CSS
21 lines
408 B
CSS
@font-face {
|
|
font-family: 'Monogram';
|
|
src: url('/fonts/monogramextended.woff2') format('woff2'),
|
|
url('/fonts/monogramextended.woff') format('woff'),
|
|
url('/fonts/monogramextended.ttf') format('truetype');
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
gap: 8px;
|
|
justify-content: center;
|
|
}
|
|
|
|
canvas {
|
|
image-rendering: crisp-edges;
|
|
image-rendering: pixelated;
|
|
}
|