File size: 30,385 Bytes
9c2670b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>AddPictures_GroundTruth</title>
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap">
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Oswald:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap">
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap">
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #1a1a2e;
      color: #e0e0e0;
      padding: 40px 20px;
    }
    h1 {
      text-align: center;
      margin-bottom: 8px;
      font-size: 28px;
      color: #fff;
    }
    .meta {
      text-align: center;
      margin-bottom: 40px;
      color: #888;
      font-size: 14px;
    }
    .slide-container {
      margin: 0 auto 60px auto;
      max-width: 100%;
    }
    .slide-label {
      text-align: center;
      margin-bottom: 12px;
      font-size: 16px;
      font-weight: 600;
      color: #aaa;
    }
    .slide-wrapper {
      display: flex;
      justify-content: center;
      overflow-x: auto;
    }
    .slide {
      flex-shrink: 0;
      transform-origin: top left;
      box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    }
    .images-section {
      max-width: 1400px;
      margin: 60px auto;
    }
    .images-section h2 {
      text-align: center;
      margin-bottom: 24px;
      color: #fff;
    }
    .images-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }
    .image-card {
      background: #16213e;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }
    .image-card img {
      width: 100%;
      height: 200px;
      object-fit: contain;
      background: #0f0f23;
      padding: 8px;
    }
    .image-label {
      padding: 8px 12px;
      font-size: 11px;
      color: #888;
      word-break: break-all;
    }
    @media (max-width: 1920px) {
      .slide {
        transform: scale(0.5);
        margin-bottom: -25%;
      }
      .slide-wrapper {
        max-height: 600px;
      }
    }
    @media (min-width: 1921px) {
      .slide {
        transform: scale(0.75);
        margin-bottom: -12%;
      }
    }
  </style>
</head>
<body>
  <h1>AddPictures_GroundTruth</h1>
  <div class="meta">1 slide(s)</div>
  
    <div class="slide-container">
      <div class="slide-label">Slide 0 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:34" style="width: 1920.0px; height: 1080.0px; background-color: rgba(0,0,0,1.0); background-image: linear-gradient(rgba(0,0,0,1.0), rgba(0,0,0,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:35" style="position: absolute; left: 0.0px; top: 0.0px; width: 1920.0px; height: 952.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/7f12ea1300756f144a0fb5daaf68dbfc01103a46.png'); background-size: cover; background-position: center; background-repeat: no-repeat;"></div>
<div data-id="1:36" style="position: absolute; left: 239.0px; top: 167.0px; width: 1442.0px; height: 745.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border: 4.0px solid rgba(243,193,27,1.0);">
<div class="ft" data-id="1:37" style="position: absolute; left: 60.0px; top: 46.0px; width: 260.0px; height: 96.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 36.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -0.72px; line-height: 47.52000045776367px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">ADD PICTURES<br></div></div>
<div data-id="1:38" style="position: absolute; left: 141.0px; top: 667.0px; width: 1159.0px; height: 48.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:39" style="position: absolute; left: 0.0px; top: 0.0px; width: 183.0px; height: 48.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 36.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -0.72px; line-height: 47.52000045776367px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">BASEBALL</div></div>
<div class="ft" data-id="1:40" style="position: absolute; left: 468.0px; top: 0.0px; width: 176.0px; height: 48.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 36.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -0.72px; line-height: 47.52000045776367px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">AIRPLANE</div></div>
<div class="ft" data-id="1:41" style="position: absolute; left: 929.0px; top: 0.0px; width: 230.0px; height: 48.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 36.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -0.72px; line-height: 47.52000045776367px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">BASKETBALL</div></div>
</div>
<div data-id="1:42" style="position: absolute; left: 87.0px; top: 227.0px; width: 292.0px; height: 292.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<svg data-id="1:43" style="position: absolute; left: 12.166666984558105px; top: 12.166666984558105px; width: 267.6666564941406px; height: 267.6666564941406px; opacity: 1.0; overflow: visible" viewBox="0 0 267.6666564941406 267.6666564941406" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M133.833 267.667C207.747 267.667 267.667 207.747 267.667 133.833C267.667 59.9192 207.747 0 133.833 0C59.9192 0 0 59.9192 0 133.833C0 207.747 59.9192 267.667 133.833 267.667Z" fill="rgba(255,255,255,1.0)" fill-rule="nonzero"/><path d="M267.667 133.833L266.167 133.833C266.167 206.919 206.919 266.167 133.833 266.167L133.833 267.667L133.833 269.167C208.576 269.167 269.167 208.576 269.167 133.833L267.667 133.833ZM133.833 267.667L133.833 266.167C60.7476 266.167 1.5 206.919 1.5 133.833L0 133.833L-1.5 133.833C-1.5 208.576 59.0908 269.167 133.833 269.167L133.833 267.667ZM0 133.833L1.5 133.833C1.5 60.7476 60.7476 1.5 133.833 1.5L133.833 0L133.833 -1.5C59.0908 -1.5 -1.5 59.0908 -1.5 133.833L0 133.833ZM133.833 0L133.833 1.5C206.919 1.5 266.167 60.7476 266.167 133.833L267.667 133.833L269.167 133.833C269.167 59.0908 208.576 -1.5 133.833 -1.5L133.833 0Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:44" style="position: absolute; left: 60.83333206176758px; top: 36.5px; width: 30.41666603088379px; height: 219.0px; opacity: 1.0; overflow: visible" viewBox="0 0 30.41666603088379 219.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M12.1667 109.5L11.0948 108.857L11.0701 108.898L11.0486 108.941L12.1667 109.5ZM12.1667 0L11.1667 0.75C23.19 16.7812 29.1667 33.7588 29.1667 51.7083C29.1667 69.6741 23.1787 88.7171 11.0948 108.857L12.1667 109.5L13.2385 110.143C25.488 89.7274 31.6667 70.2426 31.6667 51.7083C31.6667 33.1579 25.4766 15.6633 13.1667 -0.75L12.1667 0ZM12.1667 109.5L11.0486 108.941C-5.36565 141.77 -5.31925 178.651 11.0061 219.464L12.1667 219L13.3273 218.536C-2.79186 178.238 -2.74546 142.119 13.2847 110.059L12.1667 109.5Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:45" style="position: absolute; left: 200.75px; top: 36.5px; width: 30.41666603088379px; height: 219.0px; opacity: 1.0; overflow: visible" viewBox="0 0 30.41666603088379 219.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M18.25 109.5L19.368 108.941L19.3466 108.898L19.3219 108.857L18.25 109.5ZM18.25 0L17.25 -0.75C4.94003 15.6633 -1.25 33.1579 -1.25 51.7083C-1.25 70.2426 4.92868 89.7274 17.1781 110.143L18.25 109.5L19.3219 108.857C7.23799 88.7171 1.25 69.6741 1.25 51.7083C1.25 33.7588 7.22663 16.7812 19.25 0.75L18.25 0ZM18.25 109.5L17.132 110.059C33.1621 142.119 33.2085 178.238 17.0894 218.536L18.25 219L19.4106 219.464C35.7359 178.651 35.7823 141.77 19.368 108.941L18.25 109.5Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:46" style="position: absolute; left: 77.86666870117188px; top: 53.53333282470703px; width: 14.600000381469727px; height: 9.733333587646484px; opacity: 1.0; overflow: visible" viewBox="0 0 14.600000381469727 9.733333587646484" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.416025 0.624038L14.184 10.3574L14.6 9.73333L15.016 9.1093L0.416025 -0.624038L0 0Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:47" style="position: absolute; left: 73.0px; top: 77.86666870117188px; width: 17.03333282470703px; height: 4.866666793823242px; opacity: 1.0; overflow: visible" viewBox="0 0 17.03333282470703 4.866666793823242" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.206041 0.721143L16.8273 5.58781L17.0333 4.86667L17.2394 4.14552L0.206041 -0.721143L0 0Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:48" style="position: absolute; left: 70.56666564941406px; top: 102.19999694824219px; width: 17.03333282470703px; height: 2.433333396911621px; opacity: 1.0; overflow: visible" viewBox="0 0 17.03333282470703 2.433333396911621" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.106066 0.742462L16.9273 3.1758L17.0333 2.43333L17.1394 1.69087L0.106066 -0.742462L0 0Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:49" style="position: absolute; left: 70.56666564941406px; top: 126.53333282470703px; width: 14.600000381469727px; height: 1px; opacity: 1.0; overflow: visible" viewBox="0 0 14.600000381469727 1" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L0 0.75L14.6 0.75L14.6 0L14.6 -0.75L0 -0.75L0 0Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:50" style="position: absolute; left: 70.56666564941406px; top: 165.46665954589844px; width: 14.600000381469727px; height: 1px; opacity: 1.0; overflow: visible" viewBox="0 0 14.600000381469727 1" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L0 0.75L14.6 0.75L14.6 0L14.6 -0.75L0 -0.75L0 0Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:51" style="position: absolute; left: 68.13333129882812px; top: 187.36666870117188px; width: 17.03333282470703px; height: 2.433333396911621px; opacity: 1.0; overflow: visible" viewBox="0 0 17.03333282470703 2.433333396911621" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 2.43333L0.106066 3.1758L17.1394 0.742462L17.0333 0L16.9273 -0.742462L-0.106066 1.69087L0 2.43333Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:52" style="position: absolute; left: 70.56666564941406px; top: 209.26666259765625px; width: 17.03333282470703px; height: 4.866666793823242px; opacity: 1.0; overflow: visible" viewBox="0 0 17.03333282470703 4.866666793823242" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 4.86667L0.206041 5.58781L17.2394 0.721143L17.0333 0L16.8273 -0.721143L-0.206041 4.14552L0 4.86667Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:53" style="position: absolute; left: 75.43333435058594px; top: 228.73333740234375px; width: 14.600000381469727px; height: 9.733333587646484px; opacity: 1.0; overflow: visible" viewBox="0 0 14.600000381469727 9.733333587646484" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 9.73333L0.416025 10.3574L15.016 0.624038L14.6 0L14.184 -0.624038L-0.416025 9.1093L0 9.73333Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:54" style="position: absolute; left: 199.53334045410156px; top: 53.53333282470703px; width: 14.600000381469727px; height: 9.733333587646484px; opacity: 1.0; overflow: visible" viewBox="0 0 14.600000381469727 9.733333587646484" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M14.6 0L14.184 -0.624038L-0.416025 9.1093L0 9.73333L0.416025 10.3574L15.016 0.624038L14.6 0Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:55" style="position: absolute; left: 201.96665954589844px; top: 77.86666870117188px; width: 17.03333282470703px; height: 4.866666793823242px; opacity: 1.0; overflow: visible" viewBox="0 0 17.03333282470703 4.866666793823242" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M17.0333 0L16.8273 -0.721143L-0.206041 4.14552L0 4.86667L0.206041 5.58781L17.2394 0.721143L17.0333 0Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:56" style="position: absolute; left: 204.39999389648438px; top: 102.19999694824219px; width: 17.03333282470703px; height: 2.433333396911621px; opacity: 1.0; overflow: visible" viewBox="0 0 17.03333282470703 2.433333396911621" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M17.0333 0L16.9273 -0.742462L-0.106066 1.69087L0 2.43333L0.106066 3.1758L17.1394 0.742462L17.0333 0Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:57" style="position: absolute; left: 206.8333282470703px; top: 126.53333282470703px; width: 14.600000381469727px; height: 1px; opacity: 1.0; overflow: visible" viewBox="0 0 14.600000381469727 1" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M14.6 0L14.6 -0.75L0 -0.75L0 0L0 0.75L14.6 0.75L14.6 0Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:58" style="position: absolute; left: 206.8333282470703px; top: 165.46665954589844px; width: 14.600000381469727px; height: 1px; opacity: 1.0; overflow: visible" viewBox="0 0 14.600000381469727 1" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M14.6 0L14.6 -0.75L0 -0.75L0 0L0 0.75L14.6 0.75L14.6 0Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:59" style="position: absolute; left: 206.8333282470703px; top: 187.36666870117188px; width: 17.03333282470703px; height: 2.433333396911621px; opacity: 1.0; overflow: visible" viewBox="0 0 17.03333282470703 2.433333396911621" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M17.0333 2.43333L17.1394 1.69087L0.106066 -0.742462L0 0L-0.106066 0.742462L16.9273 3.1758L17.0333 2.43333Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:60" style="position: absolute; left: 204.39999389648438px; top: 209.26666259765625px; width: 17.03333282470703px; height: 4.866666793823242px; opacity: 1.0; overflow: visible" viewBox="0 0 17.03333282470703 4.866666793823242" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M17.0333 4.86667L17.2394 4.14552L0.206041 -0.721143L0 0L-0.206041 0.721143L16.8273 5.58781L17.0333 4.86667Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:61" style="position: absolute; left: 201.96665954589844px; top: 228.73333740234375px; width: 14.600000381469727px; height: 9.733333587646484px; opacity: 1.0; overflow: visible" viewBox="0 0 14.600000381469727 9.733333587646484" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M14.6 9.73333L15.016 9.1093L0.416025 -0.624038L0 0L-0.416025 0.624038L14.184 10.3574L14.6 9.73333Z" fill="rgba(204,0,0,1.0)" fill-rule="nonzero"/></svg>
</div>
<div data-id="1:62" style="position: absolute; left: 553.0px; top: 220.0px; width: 287.0px; height: 287.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<div data-id="1:63" style="position: absolute; left: 35.875px; top: 23.91666603088379px; width: 215.25px; height: 234.38333129882812px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<svg data-id="1:64" style="position: absolute; left: 0.0px; top: 0.0px; width: 215.25px; height: 234.38333129882812px; opacity: 1.0; overflow: visible" viewBox="0 0 215.25 234.38333129882812" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M107.625 0L126.758 47.8333L126.758 95.6667L215.25 155.458L215.25 179.375L126.758 148.283L126.758 191.333L155.458 215.25L155.458 234.383L107.625 215.25L59.7917 234.383L59.7917 215.25L88.4917 191.333L88.4917 148.283L0 179.375L0 155.458L88.4917 95.6667L88.4917 47.8333L107.625 0Z" fill="rgba(74,144,217,1.0)" fill-rule="nonzero"/><path d="M107.625 0L108.553 -0.371391L107.625 -2.69258L106.697 -0.371391L107.625 0ZM126.758 47.8333L127.758 47.8333L127.758 47.6408L127.687 47.4619L126.758 47.8333ZM126.758 95.6667L125.758 95.6667L125.758 96.1979L126.198 96.4953L126.758 95.6667ZM215.25 155.458L216.25 155.458L216.25 154.927L215.81 154.63L215.25 155.458ZM215.25 179.375L214.919 180.318L216.25 180.786L216.25 179.375L215.25 179.375ZM126.758 148.283L127.09 147.34L125.758 146.872L125.758 148.283L126.758 148.283ZM126.758 191.333L125.758 191.333L125.758 191.802L126.118 192.102L126.758 191.333ZM155.458 215.25L156.458 215.25L156.458 214.782L156.099 214.482L155.458 215.25ZM155.458 234.383L155.087 235.312L156.458 235.86L156.458 234.383L155.458 234.383ZM107.625 215.25L107.996 214.322L107.625 214.173L107.254 214.322L107.625 215.25ZM59.7917 234.383L58.7917 234.383L58.7917 235.86L60.1631 235.312L59.7917 234.383ZM59.7917 215.25L59.1515 214.482L58.7917 214.782L58.7917 215.25L59.7917 215.25ZM88.4917 191.333L89.1319 192.102L89.4917 191.802L89.4917 191.333L88.4917 191.333ZM88.4917 148.283L89.4917 148.283L89.4917 146.872L88.1602 147.34L88.4917 148.283ZM0 179.375L-1 179.375L-1 180.786L0.331486 180.318L0 179.375ZM0 155.458L-0.559857 154.63L-1 154.927L-1 155.458L0 155.458ZM88.4917 95.6667L89.0515 96.4953L89.4917 96.1979L89.4917 95.6667L88.4917 95.6667ZM88.4917 47.8333L87.5632 47.4619L87.4917 47.6408L87.4917 47.8333L88.4917 47.8333ZM107.625 0L106.697 0.371391L125.83 48.2047L126.758 47.8333L127.687 47.4619L108.553 -0.371391L107.625 0ZM126.758 47.8333L125.758 47.8333L125.758 95.6667L126.758 95.6667L127.758 95.6667L127.758 47.8333L126.758 47.8333ZM126.758 95.6667L126.198 96.4953L214.69 156.287L215.25 155.458L215.81 154.63L127.318 94.8381L126.758 95.6667ZM215.25 155.458L214.25 155.458L214.25 179.375L215.25 179.375L216.25 179.375L216.25 155.458L215.25 155.458ZM215.25 179.375L215.581 178.432L127.09 147.34L126.758 148.283L126.427 149.227L214.919 180.318L215.25 179.375ZM126.758 148.283L125.758 148.283L125.758 191.333L126.758 191.333L127.758 191.333L127.758 148.283L126.758 148.283ZM126.758 191.333L126.118 192.102L154.818 216.018L155.458 215.25L156.099 214.482L127.399 190.565L126.758 191.333ZM155.458 215.25L154.458 215.25L154.458 234.383L155.458 234.383L156.458 234.383L156.458 215.25L155.458 215.25ZM155.458 234.383L155.83 233.455L107.996 214.322L107.625 215.25L107.254 216.178L155.087 235.312L155.458 234.383ZM107.625 215.25L107.254 214.322L59.4203 233.455L59.7917 234.383L60.1631 235.312L107.996 216.178L107.625 215.25ZM59.7917 234.383L60.7917 234.383L60.7917 215.25L59.7917 215.25L58.7917 215.25L58.7917 234.383L59.7917 234.383ZM59.7917 215.25L60.4319 216.018L89.1319 192.102L88.4917 191.333L87.8515 190.565L59.1515 214.482L59.7917 215.25ZM88.4917 191.333L89.4917 191.333L89.4917 148.283L88.4917 148.283L87.4917 148.283L87.4917 191.333L88.4917 191.333ZM88.4917 148.283L88.1602 147.34L-0.331486 178.432L0 179.375L0.331486 180.318L88.8232 149.227L88.4917 148.283ZM0 179.375L1 179.375L1 155.458L0 155.458L-1 155.458L-1 179.375L0 179.375ZM0 155.458L0.559857 156.287L89.0515 96.4953L88.4917 95.6667L87.9318 94.8381L-0.559857 154.63L0 155.458ZM88.4917 95.6667L89.4917 95.6667L89.4917 47.8333L88.4917 47.8333L87.4917 47.8333L87.4917 95.6667L88.4917 95.6667ZM88.4917 47.8333L89.4201 48.2047L108.553 0.371391L107.625 0L106.697 -0.371391L87.5632 47.4619L88.4917 47.8333Z" fill="rgba(44,95,138,1.0)" fill-rule="nonzero"/></svg>
</div>
</div>
<div data-id="1:65" style="position: absolute; left: 1054.0px; top: 239.0px; width: 261.0px; height: 261.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<svg data-id="1:66" style="position: absolute; left: 10.875px; top: 10.875px; width: 239.25px; height: 239.25px; opacity: 1.0; overflow: visible" viewBox="0 0 239.25 239.25" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M119.625 239.25C185.692 239.25 239.25 185.692 239.25 119.625C239.25 53.5579 185.692 0 119.625 0C53.5579 0 0 53.5579 0 119.625C0 185.692 53.5579 239.25 119.625 239.25Z" fill="rgba(245,130,32,1.0)" fill-rule="nonzero"/><path d="M239.25 119.625L237.75 119.625C237.75 184.864 184.864 237.75 119.625 237.75L119.625 239.25L119.625 240.75C186.52 240.75 240.75 186.52 240.75 119.625L239.25 119.625ZM119.625 239.25L119.625 237.75C54.3864 237.75 1.5 184.864 1.5 119.625L0 119.625L-1.5 119.625C-1.5 186.52 52.7295 240.75 119.625 240.75L119.625 239.25ZM0 119.625L1.5 119.625C1.5 54.3864 54.3864 1.5 119.625 1.5L119.625 0L119.625 -1.5C52.7295 -1.5 -1.5 52.7295 -1.5 119.625L0 119.625ZM119.625 0L119.625 1.5C184.864 1.5 237.75 54.3864 237.75 119.625L239.25 119.625L240.75 119.625C240.75 52.7295 186.52 -1.5 119.625 -1.5L119.625 0Z" fill="rgba(212,105,26,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:67" style="position: absolute; left: 130.5px; top: 10.875px; width: 1px; height: 239.25px; opacity: 1.0; overflow: visible" viewBox="0 0 1 239.25" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-1 0L-1 239.25L0 239.25L1 239.25L1 0L0 0Z" fill="rgba(51,51,51,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:68" style="position: absolute; left: 10.875px; top: 130.5px; width: 239.25px; height: 1px; opacity: 1.0; overflow: visible" viewBox="0 0 239.25 1" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L0 1L239.25 1L239.25 0L239.25 -1L0 -1L0 0Z" fill="rgba(51,51,51,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:69" style="position: absolute; left: 54.375px; top: 17.399999618530273px; width: 38.0625px; height: 226.1999969482422px; opacity: 1.0; overflow: visible" viewBox="0 0 38.0625 226.1999969482422" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.674769 0.738029C24.4717 23.7291 37.0625 53.9005 37.0625 91.35C37.0625 128.839 24.4417 173.633 -0.899368 225.763L0 226.2L0.899368 226.637C26.3083 174.367 39.0625 129.261 39.0625 91.35C39.0625 53.3995 26.2783 22.6709 0.674769 -0.738029L0 0Z" fill="rgba(51,51,51,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:70" style="position: absolute; left: 168.5625px; top: 17.399999618530273px; width: 38.0625px; height: 226.1999969482422px; opacity: 1.0; overflow: visible" viewBox="0 0 38.0625 226.1999969482422" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M38.0625 0L37.3877 -0.738029C11.7842 22.6709 -1 53.3995 -1 91.35C-1 129.261 11.7542 174.367 37.1631 226.637L38.0625 226.2L38.9619 225.763C13.6208 173.633 0.999999 128.839 0.999999 91.35C0.999999 53.9005 13.5908 23.7291 38.7373 0.738029L38.0625 0Z" fill="rgba(51,51,51,1.0)" fill-rule="nonzero"/></svg>
</div>
</div>

        </div>
      </div>
    </div>

  <div class="images-section"><h2>Images</h2><div class="images-grid">

      <div class="image-card">
        <img src="images/7f12ea1300756f144a0fb5daaf68dbfc01103a46.png" alt="7f12ea1300756f144a0fb5daaf68dbfc01103a46">
        <div class="image-label">7f12ea1300756f144a0fb5daaf68dbfc01103a46.png</div>
      </div>
</div></div>

  <script>
  // Shrink-to-fit: when a custom font fails to load and the fallback is wider/taller, the rendered text overflows the Figma bbox. The shrink is SLACK-AWARE — each text is allowed to overflow into the empty space between it and its nearest neighbor in the overflow direction. Figma sizes text containers tightly around the original font's glyph extent, but the surrounding layout often leaves visual breathing room (e.g. 56px gaps between nav labels). Squeezing every label into its tight bbox makes them look weak; letting them grow into the gap keeps the design closer to the source while still preventing actual overlap.
  (function() {
    // Per-element "how far can I overflow before hitting a neighbor" computed once. Position-fixed: depends only on bbox layout, not on font shrink state.
    var slackCache = new WeakMap();
    function computeSlack(container) {
      if (slackCache.has(container)) return slackCache.get(container);
      var slide = container.closest('.slide');
      var er = container.getBoundingClientRect();
      var sliderc = slide ? slide.getBoundingClientRect() : null;
      var leftS = Infinity, rightS = Infinity, topS = Infinity, botS = Infinity;
      if (slide) {
        // Collide against other text labels only — overlapping decorative shapes/backgrounds is usually fine and often intentional. Text-on-text is what creates unreadable layouts.
        slide.querySelectorAll('.ft').forEach(function(other) {
          if (other === container || container.contains(other) || other.contains(container)) return;
          var or = other.getBoundingClientRect();
          var vertOverlap = or.top < er.bottom - 0.5 && or.bottom > er.top + 0.5;
          var horzOverlap = or.left < er.right - 0.5 && or.right > er.left + 0.5;
          if (vertOverlap) {
            if (or.left >= er.right - 0.5) rightS = Math.min(rightS, or.left - er.right);
            if (or.right <= er.left + 0.5) leftS = Math.min(leftS, er.left - or.right);
          }
          if (horzOverlap) {
            if (or.top >= er.bottom - 0.5) botS = Math.min(botS, or.top - er.bottom);
            if (or.bottom <= er.top + 0.5) topS = Math.min(topS, er.top - or.bottom);
          }
        });
      }
      if (sliderc) {
        leftS = Math.min(leftS, Math.max(0, er.left - sliderc.left));
        rightS = Math.min(rightS, Math.max(0, sliderc.right - er.right));
        topS = Math.min(topS, Math.max(0, er.top - sliderc.top));
        botS = Math.min(botS, Math.max(0, sliderc.bottom - er.bottom));
      }
      var scale = er.width / (container.clientWidth || 1); // rendered-px → layout-px
      var toLayout = function(v) { return v === Infinity ? 99999 : Math.max(0, v / (scale || 1)); };
      var s = { left: toLayout(leftS), right: toLayout(rightS), top: toLayout(topS), bottom: toLayout(botS) };
      slackCache.set(container, s);
      return s;
    }
    function fitOne(container) {
      var inner = container.firstElementChild;
      if (!inner) return;
      var cw = container.clientWidth, ch = container.clientHeight;
      if (!cw || !ch) return;
      if (inner.dataset.origFs) {
        inner.style.fontSize = inner.dataset.origFs;
        if (inner.dataset.origLs) inner.style.letterSpacing = inner.dataset.origLs;
        if (inner.dataset.origLh) inner.style.lineHeight = inner.dataset.origLh;
      } else {
        inner.dataset.origFs = getComputedStyle(inner).fontSize;
        inner.dataset.origLs = getComputedStyle(inner).letterSpacing;
        inner.dataset.origLh = getComputedStyle(inner).lineHeight;
      }
      var origFs = parseFloat(inner.dataset.origFs);
      var origLs = parseFloat(inner.dataset.origLs) || 0;
      var origLh = parseFloat(inner.dataset.origLh) || 0;
      // Single-line text (white-space: nowrap, or no <br> in the source) only needs to fit its WIDTH — the fallback font's natural line-box (ascender + descender) is usually a few px taller than the Figma bbox even at the correct font, and that's expected, not an overflow to fix.
      var isSingleLine = getComputedStyle(inner).whiteSpace === 'nowrap' || !/<br/i.test(inner.innerHTML);
      var slack = computeSlack(container);
      var align = getComputedStyle(inner).textAlign;
      // Effective allowed width: bbox + slack on the side(s) the text actually overflows toward, per text-align.
      var allowedW;
      if (align === 'right' || align === 'end') allowedW = cw + slack.left;
      else if (align === 'center') allowedW = cw + 2 * Math.min(slack.left, slack.right);
      else allowedW = cw + slack.right; // left / start / justify
      var allowedH = ch + slack.bottom; // text typically grows downward when wrapping
      var fs = origFs;
      for (var iter = 0; iter < 8; iter++) {
        var iw = inner.scrollWidth, ih = inner.scrollHeight;
        var rw = iw > allowedW + 0.5 ? allowedW / iw : 1;
        var rh = (!isSingleLine && ih > allowedH + 0.5) ? allowedH / ih : 1;
        var r = Math.min(rw, rh);
        if (r > 0.998) break;
        var newFs = Math.max(6, fs * r);
        if (newFs >= fs - 0.05) break;
        fs = newFs;
        inner.style.fontSize = fs + 'px';
        // Scale letter-spacing AND line-height proportionally so they shrink with font-size — otherwise the absolute-px values dominate at small sizes.
        if (origLs) inner.style.letterSpacing = (origLs * fs / origFs) + 'px';
        if (origLh) inner.style.lineHeight = (origLh * fs / origFs) + 'px';
      }
    }
    function fitAll() { document.querySelectorAll('.ft').forEach(fitOne); }
    if (document.fonts && document.fonts.ready) {
      document.fonts.ready.then(fitAll);
    } else {
      window.addEventListener('load', fitAll);
    }
    var t;
    window.addEventListener('resize', function() { clearTimeout(t); t = setTimeout(fitAll, 150); });
  })();
  </script>
</body>
</html>