Changed around line 8: creators.tsv
+ :root {
+ --scale: 0.5; /* Change this single value to adjust the scale */
+ }
Changed around line 19: css
- transform: scale(0.5);
+ transform: scale(var(--scale));
- width: 400px;
- height: 300px;
+ width: calc(800px * var(--scale));
+ height: calc(600px * var(--scale));