-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (54 loc) · 976 Bytes
/
styles.css
File metadata and controls
62 lines (54 loc) · 976 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
61
62
*{
margin: 0;
padding: 0;
}
.container {
width: 100%;
height: 100vh;
overflow-y: scroll;
scroll-snap-type: y mandatory;
}
.pages {
width: 100%;
height: 100vh;
scroll-snap-align: start;
display: flex;
justify-content: center;
}
.pages img {
width: 100%;
height: 100vh;
display: flex;
object-fit: cover;
position: absolute;
z-index: -1;
}
.neon-text {
color: #ffffff;
text-shadow:
0 0 7px #7dd4ff,
0 0 21px #65c9ff,
0 0 102px rgb(71, 163, 255),
0 0 151px rgb(71, 163, 255);
}
.home-intro {
margin-top: 25vh;
margin-bottom: 75vh;
}
.home-intro h2 {
font-size: 5vh;
color: rgb(143, 212, 233);
font-weight: bold;
text-decoration: none;
}
.rocket img {
width: auto;
height: 6vh;
position: absolute;
top: 34vh;
right: 49.7vw;
z-index: 1;
}
.rocket img:hover {
filter: brightness(0.7) sepia(1) hue-rotate(180deg);
}