-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
46 lines (46 loc) · 835 Bytes
/
style.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
body {
font-family: Arial, sans-serif;
background-color: #e8f5e9;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
background-color: white;
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
max-width: 600px;
width: 100%;
}
h1 {
color: #2e7d32;
text-align: center;
}
#eco-fact, #eco-action {
text-align: center;
margin: 20px 0;
}
#eco-fact {
font-style: italic;
}
#eco-action {
font-weight: bold;
}
button {
display: block;
margin: 20px auto;
padding: 10px 20px;
background-color: #4caf50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #45a049;
}