-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (38 loc) · 694 Bytes
/
style.css
File metadata and controls
44 lines (38 loc) · 694 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
39
40
41
42
43
44
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to right, #74ebd5, #ACB6E5);
text-align: center;
}
header {
padding: 50px 0;
color: white;
background: rgba(0,0,0,0.3);
}
h1 {
font-size: 60px;
margin-bottom: 10px;
}
p {
font-size: 20px;
margin-bottom: 30px;
}
img {
width: 300px;
border-radius: 15px;
box-shadow: 0px 10px 20px rgba(0,0,0,0.3);
}
button {
background-color: #ff7f50;
border: none;
padding: 15px 30px;
color: white;
font-size: 18px;
border-radius: 10px;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background-color: #ff5722;
}