-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
152 lines (135 loc) · 2.99 KB
/
style.css
File metadata and controls
152 lines (135 loc) · 2.99 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
@font-face {
font-family:"Syncopate-Bold";
src: url("font/Syncopate/Syncopate-Bold.ttf");
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 175vh;
background-image: url("img/p1.jpg"); /* Replace this with your desired image path */
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 30px 100px;
}
.logo {
font-family:"Syncopate-Bold";
font-weight: 800;
font-size: 21px;
color: #fff;
}
.nav ul {
display: flex;
align-items: center;
}
.nav ul li {
font-family:"Syncopate-Bold";
font-weight: 800;
font-size: 12px;
color: #fff;
margin-left: 50px;
list-style: none;
text-transform: capitalize;
cursor: pointer;
}
.nav ul li:hover {
background:linear-gradient(to bottom,#f2f3f5,#fff);
background-clip: text;
-webkit-text-fill-color: transparent;
}
.btn {
font-family:"Syncopate-Bold";
font-weight: 800;
font-size: 14px;
color: #fff;
border: 1px solid #10121b;
padding: 10px 25px;
border-top-left-radius: 10px;
background: transparent;
}
.content h1 {
font-family:"Syncopate-Bold";
font-weight: 800;
font-size: 50px;
color: #fff;
text-align: center;
line-height: 70px;
margin-top: 3%;
}
.content h1 span {
background:linear-gradient(to bottom,#8DA4EA,#fff);
background-clip: text;
-webkit-text-fill-color: transparent;
}
.content p {
font-family:"Syncopate-Bold";
font-weight: 800;
font-size: 14px;
color: #fff;
text-align: center;
text-transform: capitalize;
line-height: 24px;
padding: 30px 0px 40px;
}
.center-btn {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.content button {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
}
.content .btn span {
border: 2px solid #fff;
border-radius: 30px;
width: 22px;
height: 22px;
display: flex;
align-items: center;
justify-content: center;
transform: rotate(90deg);
}
.earth-img {
display: flex;
align-items: center;
justify-content: center;
margin-top: 37px;
position: relative;
}
.earth-img::before {
content: '';
position: absolute;
background-image: url("img/globe.png");
background-repeat: no-repeat;
top: 0px;
left: 210px;
width: 145px;
height: 145px;
}
.earth-img::after {
content: '';
position: absolute;
background-image: url(img/space-research.png);
background-repeat: no-repeat;
right: 120px;
top: -204px;
width: 35%;
height: 147%;
}
.logo img {
width: 200px; /* Adjust based on desired width */
height: 150px; /* Adjust based on desired height */
}