-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (45 loc) · 1.05 KB
/
index.html
File metadata and controls
49 lines (45 loc) · 1.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scene To Be Fair</title>
<style>
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
background: #0a0a0a;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
gap: 2rem;
}
.logo {
width: min(80vw, 680px);
height: auto;
display: block;
}
.email {
font-family: 'Courier New', Courier, monospace;
font-size: clamp(0.65rem, 1.5vw, 0.85rem);
letter-spacing: 0.25em;
text-transform: lowercase;
color: rgba(255, 255, 255, 0.4);
text-decoration: none;
}
</style>
</head>
<body>
<img class="logo" src="STBF-LOGO.png" alt="Scene To Be Fair">
<a class="email" href="mailto:info@scenetobefair.com">info@scenetobefair.com</a>
</body>
</html>