forked from mariojnoronha/Git-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
38 lines (38 loc) · 712 Bytes
/
Copy pathstyles.css
File metadata and controls
38 lines (38 loc) · 712 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 40px;
background-color: #f4f4f4;
color: #333;
}
h1 {
color: #2c3e50;
}
img {
max-width: 300px;
height: auto;
margin: 20px 0;
border-radius: 8px;
box-shadow: 0 0 10px rgba(44, 62, 80, 0.2);
}
p {
font-size: 18px;
max-width: 600px;
margin: 0 auto 30px auto;
line-height: 1.5;
}
button {
background-color: #2980b9;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #3498db;
}
.container {
text-align: center;
}