-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (52 loc) · 938 Bytes
/
style.css
File metadata and controls
60 lines (52 loc) · 938 Bytes
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
#top {
height: 100vh;
width: 100vw;
}
.outer-div {
width: 100%;
height: 100%;
display: block;
text-align: center;
margin: auto;
padding: 5%;
background-color: rgb(7,17,29);
}
.text-wrapper {
padding: 5% 20%;
margin-right: 5%;
color: #fff;
position: absolute;
bottom: 50px;
}
.header {
font-size: 5rem;
background: linear-gradient(to top, rgb(255,214,95), rgb(219,88,10));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 600;
}
.blurb {
font-size: 1.5rem;
color: rgb(255,214,95);
}
.explore {
color: rgb(255,214,95);
background-color: transparent;
border: 1px solid rgb(255,214,95);
padding: 1rem 2.5rem;
border-radius: 25px;
font-size: 1.1rem;
transition: 0.3s;
}
.explore:hover {
background-color: #f9d773;
cursor: pointer;
color: black;
}
.btn-wrapper {
padding-top: 1.6rem;
}
.tiger-img {
width: 100%;
max-width: 1000px;
}