summaryrefslogtreecommitdiff
path: root/style.css
blob: cff875390623cceefeeaebe96b96ec59ff557238 (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

body {
	background-color: black;
	font-size: 20;
}

.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%;
}