-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (67 loc) · 986 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
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
body {
background-color: black;
color: white;
}
.container {
width: 80%;
margin: auto;
background-color: rgb(43, 39, 39);
border-radius: 20px;
}
.heading {
font-family: "Lobster", cursive;
}
#title {
text-align: center;
/* background-color: aqua; */
font-size: 90px;
}
#span1 {
color: red;
}
#img-div {
text-align: center;
}
#image {
width: 400px;
border-radius: 40px;
}
#info {
width: 80%;
/* background-color: aqua; */
margin: 20px auto;
text-align: justify;
font-size: 24px;
}
#marvel {
color: red;
margin-left: 10%;
}
ul {
width: 80%;
margin: auto;
}
li {
font-size: 24px;
line-height: 50px;
}
#footer {
text-align: center;
width: 60%;
margin: auto;
border: 1px solid;
padding: 30px;
font-size: 24px;
}
#link {
text-decoration: none;
color: white;
border: 2px solid orange;
border-radius: 10px;
padding: 15px;
background-color: black;
}
#link:hover{
color:red;
background-color: gray;
}