-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
154 lines (139 loc) · 3.23 KB
/
main.css
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
153
154
/* General Body Styles */
html, body {
font-family: 'Product Sans', sans-serif;
margin: 0;
background: linear-gradient(135deg, #0e1111 50%, #1a1e1e 100%);
color: white;
overflow-x: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
width:100%;
}
/* Header */
header {
position: fixed;
top: 0;
left: 0;
right: 0;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 30px;
background-color: rgba(15, 13, 13, 0.9);
border-bottom: 1px solid red;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
z-index: 1000;
}
.social-icons {
display: flex;
justify-content: center; /* Center the icons */
margin-top: 20px; /* Space above the icons */
gap: 15px; /* Space between icons */
}
.social-icon {
font-size: 25px; /* Adjust size as needed */
color: white; /* Change icon color */
transition: transform 0.3s ease; /* Smooth zoom effect on hover */
}
.social-icon:hover {
color: red;
transform: scale(1.1); /* Slightly enlarge the icon on hover */
}
.logo-img {
width: 120px;
height: auto;
}
.nav-links {
display: flex;
gap: 15px;
font-size: 16px;
}
.nav-links img {
width: 60px;
height: auto;
}
.nav-links a {
color: red;
text-decoration: none;
transition: color 0.3s ease;
}
.nav-links a:hover {
text-decoration: underline;
}
/* Main Content */
.content {
display: flex;
flex-direction: column; /* Stack children vertically */
align-items: center; /* Center children horizontally */
justify-content: center; /* Center children vertically */
margin-top: 30px; /* Adjust this value to decrease space above the main logo */
text-align: center;
max-width: 800px;
}
.main-logo {
width: 300px;
margin: 0px auto;
transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.main-logo:hover {
transform: scale(1.05);
}
.title {
font-size: 2.5rem;
font-weight: bold;
margin-top: 20px;
color: red; /* Highlighted color for title */
}
.description {
font-size: 1.1rem;
color: #e0e0e0;
line-height: 1.6;
margin: 20px auto;
max-width: 80%;
}
/* Footer */
footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
text-align: center;
color: white;
font-style: italic;
padding: 15px 30px;
background-color: #0f0d0d;
border-top: 1px solid red;
font-size: 14px;
}
/* Burger Menu Styles */
.burger-menu {
display: none;
font-size: 24px;
cursor: pointer;
color: red;
}
@media (max-width: 768px) {
.burger-menu {
display: block;
}
.nav-links {
display: none;
position: absolute;
top: 55px;
right: 20px;
background-color: #0f0d0d;
padding: 10px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
gap: 10px;
flex-direction: column;
width: 160px;
text-align: center;
}
.nav-links.active {
display: flex;
}
}