-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (108 loc) · 2.18 KB
/
index.html
File metadata and controls
123 lines (108 loc) · 2.18 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
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
<!DOCTYPE html>
<html>
<head>
<title>Sequoia | Coming Soon</title>
<link rel="shortcut icon" href="images/sequoia.png" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
padding: 0;
background-color: #001F3D;
color: white;
font-family: Arial, sans-serif;
}
/* Mobile background */
@media (max-width: 768px) {
.container {
background-image: url('images/sequoia-bg-mob.png');
}
}
/* Desktop background */
@media (min-width: 769px) {
.container {
background-image: url('images/sequoia-bg.png');
}
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
background-color: rgba(0, 0, 0, 0.5);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
h1 {
font-size: 3rem;
margin: 0 0 1rem;
text-shadow: 2px 2px #6E3419;
}
p {
font-size: 1.5rem;
margin: 0 0 2rem;
text-shadow: 2px 2px #6E3419;
}
.btn {
display: inline-block;
background-color: #6E3419;
color: white;
margin-top: 250px;
padding: 1rem 2rem;
border-radius: 0.5rem;
text-decoration: none;
box-shadow: 2px 2px #001F3D;
transition: all 0.3s ease-in-out;
}
.btn:hover {
transform: translateY(-5px);
box-shadow: 3px 3px #001F3D;
}
.video-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.video-bg video {
min-width: 100%;
min-height: 100%;
object-fit: cover;
}
.logo {
position: absolute;
top: 2rem;
left: 2rem;
height: 10rem;
}
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}
p {
font-size: 1rem;
}
.btn {
padding: 0.5rem 1rem;
}
.logo {
top: 1rem;
left: 1rem;
height: 3rem;
}
}
</style>
</head>
<body>
<div class="container">
<img src="images/sequoia.png" alt="Sequoia Logo" class="logo">
<a href="mailto:info@sequoia.com" class="btn">Email Enquiry</a>
</div>
</body>
</html>