blob: dcbc36b3ca318e173bc731c9ed3be5cb33d3c6b1 (
plain) (
blame)
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
|
.main {
max-width: 90%;
margin: 0px auto;
display: flex;
height: 100dvh;
flex-direction: column;
align-items: center;
justify-content: center;
}
.redirects {
display: flex;
align-items: center;
margin-top: -10px;
}
.HomeSVG {
transition: transform 0.2s linear;
}
.HomeSVG:hover {
transition: transform 0.2s linear;
transform: translate(2px, -8px);
}
.redirects a {
color: white;
text-decoration: none;
margin-right: 10px;
margin-left: 10px;
color: var(--light-green);
}
@media screen and (max-width: 768px) {
.HomeSVG {
width: 400px;
margin-bottom: -20px;
}
}
@media screen and (max-width: 425px) {
.HomeSVG {
width: 350px;
}
}
@media screen and (max-width: 375px) {
.HomeSVG {
width: 300px;
}
}
|