blob: c9d1749ece65f7f8825060cb0e26ab59ad0cafbd (
plain)
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 {
background-color: black;
font-size: 20px;
font-family: "Cousine", monospace;
font-weight: 400;
font-style: normal;
}
.mainflex {
display: flex;
justify-content: center;
height: 90vh;
align-items: center;
flex-direction: column;
gap: 0.5%;
}
.mainflex img {
margin-left: 110px;
}
a {
color: violet;
text-decoration: none;
text-shadow: indigo 2px 5px;
}
a:hover {
color: slateblue;
text-decoration: none;
text-shadow: navy 2px 5px;
}
footer {
border-top: 2px dashed grey;
display: flex;
justify-content: center;
padding: 2%;
}
|