Update style.css
Browse files
style.css
CHANGED
@@ -1,15 +1,22 @@
|
|
1 |
.header {
|
2 |
-
background-color: #f0f2f6;
|
3 |
-
padding: 20px;
|
4 |
-
border-radius: 10px;
|
5 |
text-align: center;
|
|
|
|
|
|
|
6 |
margin-bottom: 20px;
|
7 |
-
box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
|
8 |
}
|
9 |
-
|
10 |
-
|
|
|
|
|
11 |
}
|
12 |
-
|
|
|
|
|
13 |
color: #333;
|
14 |
-
|
|
|
|
|
|
|
|
|
15 |
}
|
|
|
1 |
.header {
|
|
|
|
|
|
|
2 |
text-align: center;
|
3 |
+
padding: 30px;
|
4 |
+
background: linear-gradient(90deg, #ffcccc, #ffe6e6);
|
5 |
+
border-radius: 15px;
|
6 |
margin-bottom: 20px;
|
|
|
7 |
}
|
8 |
+
|
9 |
+
h1 {
|
10 |
+
font-size: 2rem;
|
11 |
+
color: #cc0000;
|
12 |
}
|
13 |
+
|
14 |
+
p {
|
15 |
+
font-size: 1.1rem;
|
16 |
color: #333;
|
17 |
+
}
|
18 |
+
|
19 |
+
button {
|
20 |
+
font-weight: bold;
|
21 |
+
font-size: 1.1rem;
|
22 |
}
|