-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
133 lines (114 loc) · 2.59 KB
/
styles.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
/* Global Styles */
body {
font-family: 'Roboto', sans-serif;
background-color: #000000;
color: #ffffff;
margin: 0;
padding: 20px;
}
a {
color: #ff0080;
text-decoration: none;
}
a:hover {
color: #ff4500;
}
/* Header Styles */
header {
display: flex;
justify-content: flex-end; /* Move the top bar to the right */
align-items: center;
margin-bottom: 40px;
background: linear-gradient(to right, #ff0000, #ff8000, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff); /* Rainbow gradient background */
padding: 10px 20px; /* Add padding for the top bar */
}
.logo img {
width: 100px;
height: auto;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
}
nav li {
margin-right: 20px;
}
nav a {
font-size: 18px;
font-weight: bold;
transition: color 0.3s ease;
}
nav a.active,
nav a:hover {
color: #ff4500;
}
/* Hero Section Styles */
.hero {
text-align: center;
margin-bottom: 40px;
background: linear-gradient(to right, #ff0000, #ff8000, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff); /* Rainbow gradient background */
padding: 20px; /* Add padding for the hero section */
}
.hero h1 {
font-size: 48px;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
color: #ffffff;
}
.hero p {
font-size: 24px;
margin-bottom: 20px;
color: #ffffff;
}
/* Features Section Styles */
.features {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 40px;
}
.feature {
flex-basis: calc(33.33% - 20px);
padding: 20px;
background-color: #222222;
border-radius: 10px;
text-align: center;
}
.feature img {
width: 100px;
height: auto;
margin-bottom: 20px;
}
.feature h2 {
font-size: 24px;
margin-bottom: 10px;
color: #ffffff;
}
.feature p {
font-size: 18px;
margin-bottom: 20px;
color: #ffffff;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #ff0080;
color: #000000;
font-size: 18px;
font-weight: bold;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #ff4500;
}
/* Footer Styles */
footer {
text-align: center;
font-size: 14px;
margin-top: 40px;
background: linear-gradient(to right, #ff0000, #ff8000, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff); /* Rainbow gradient background */
padding: 10px 0; /* Add padding for the footer */
}