-
Notifications
You must be signed in to change notification settings - Fork 11
/
style.css
81 lines (67 loc) · 985 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
80
body {
background-color: black;
color: white;
}
.container {
width: 80%;
margin: auto;
border-radius: 20px;
background-color: rgb(60, 60, 60);
}
.heading {
font-family: 'Lobster', cursive;
}
#title {
font-size: 90px;
text-align: center;
}
span {
color: red;
}
#image {
width: 400px;
border-radius: 20px;
box-shadow: 5px 5px 500px red;
}
.img-div {
text-align: center;
}
.info {
width: 80%;
margin: 20px auto;
text-align: justify;
font-size: 1.5rem;
}
#marvel {
color: red;
/* margin-left: 10%; */
width: 80%;
margin: auto;
font-size: 30px;
}
ul {
width: 80%;
margin: auto;
}
li {
font-size: 24px;
line-height: 3rem;
}
.footer {
margin: 2rem;
padding: 2rem;
text-align: center;
font-size: 2rem;
}
#link {
text-decoration: none;
color: white;
border: 2px solid orange;
border-radius: 10px;
padding: 1rem;
background-color: black;
}
#link:hover {
background-color: rgb(94, 93, 93);
color: red;
}