aboutsummaryrefslogtreecommitdiff
path: root/src/App.css
blob: f964ebbb2b313700bd7714a63c53329e79cbffa8 (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
.App {
    text-align: center;
    margin: auto;
    max-width: 90vw;

    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.App h1 {
    font-size: 2.4em;
    margin: 18px 0px 8px 0px;
}

.App a {
    text-decoration: none;
    color: #000;
}

.BlueLink {
    color: #008 !important;
}

footer {
    margin-top: auto;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .App {
        margin: auto;
        max-width: 95vw;
    }
}