File size: 1,451 Bytes
711a7b6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="3">
<title>VAILL — Loading</title>
<style>
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  }
  .title {
    color: #CFB991;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
  }
  .subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
  }
  .spinner {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(207,185,145,0.2);
    border-top: 3px solid #CFB991;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 1.2rem;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .message {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
  }
  .bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #CFB991, #e8d5a8, #CFB991, transparent);
  }
</style>
</head>
<body>
  <div class="bar"></div>
  <div class="title">VAILL</div>
  <div class="subtitle">Vanderbilt AI Law Lab</div>
  <div class="spinner"></div>
  <div class="message">Loading AI Legislation Tracker&hellip;</div>
</body>
</html>