-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (85 loc) · 2.81 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coming Soon - Nera Systems</title>
<link rel="icon" href="nerasystems_logo.jpg" type="image/jpeg">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400&display=swap" rel="stylesheet">
<style>
body {
background-color: #012E6F;
color: #FFFFFF;
font-family: 'Open Sans', sans-serif;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
padding: 50px 20px 20px; /* Increased padding at the top */
box-sizing: border-box;
}
.container {
text-align: center;
}
.logo {
max-width: 50%;
height: auto;
margin-bottom: 30px; /* Increased margin to add space between logo and text */
}
.hero h1 {
font-family: 'Montserrat', sans-serif;
font-size: 6vw; /* Reduced font size for smaller screens */
background: linear-gradient(90deg, #B78949, #F8EDA0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin: 0 0 10px;
}
.hero p {
font-size: 4vw; /* Responsive font size for smaller screens */
color: #FFFFFF;
margin: 10px 0;
}
.hero a {
color: #F8EDA0;
text-decoration: none;
font-weight: bold;
}
.hero a:hover {
color: #B78949;
}
@media (min-width: 600px) {
.logo {
max-width: 30%; /* Adjust logo size for medium screens */
}
.hero h1 {
font-size: 3em; /* Adjusted font size for medium screens */
}
.hero p {
font-size: 1.2em; /* Adjusted font size for medium screens */
}
}
@media (min-width: 768px) {
.logo {
max-width: 15%; /* Reduced logo size for larger screens */
}
.hero h1 {
font-size: 4em; /* Adjusted font size for larger screens */
}
.hero p {
font-size: 1.4em; /* Adjusted font size for larger screens */
}
}
</style>
</head>
<body>
<div class="container">
<img src="nerasystems_logo.jpg" alt="Nera Systems Logo" class="logo">
<div class="hero">
<h1>In stealth - more to follow</h1>
<p>Reach out to us at <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</body>
</html>