-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (71 loc) · 1.61 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
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400&family=Playfair+Display:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=Manrope:wght@500;600;700;800&display=swap');
html {
/* Main/Gradient/Orange */
background: linear-gradient(215.91deg, #EDB364 12.73%, #E9856D 85.52%);
height: 100%;
width: 100%;
overflow: hidden;
}
h1 {
text-align: center;
color: #fff;
font-family: 'Manrope', sans-serif;
font-weight: 700;
font-size: 56px;
}
p {
font-family: 'DM Sans', sans-serif;
text-align: center;
color: #fff;
font-size: 24px;
font-weight: 400;
padding-bottom: 30px;
margin-bottom: 0;
margin-top: 0px;
}
body {
border: 1px solid rgba(255,255,255, 0.5);
padding: 50px;
margin: 3%;
min-height: 80vh;
overflow: hidden;
height: 80vh;
display: flex;
align-items: center;
justify-content: center;
}
.wrapper {
display: flex;
align-content: center;
flex-flow: column;
height: min-content;
}
img {
display: block;
margin: 30px auto;
}
img.logo {
margin-bottom: 0;
}
img.word {
padding-top: 30px;
margin-top: 0;
width: 111px;
}
img.line {
margin-top: 30;
}
</style>
<div class="wrapper">
<img class="logo" src="images/heal-me-logo.png">
<h1>Coming Soon</h1>
<p>We're on a mission to make wellness primary care.</p>
<img class="line" src="images/line.png">
<img class="word" src="images/heal-me-logo-word-new.png">
</div>