File size: 706 Bytes
db242f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.return-btn {
    position: absolute;
    margin: 20px;
}

@media only screen and (max-width: 600px) {
    .return-btn {
        margin: 10px;
    }
}

.welcome-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: auto;

    .title {
        font-size: 2.5rem;
        color: var(--inactive);
        justify-content: center;
    }

    @media only screen and (max-width: 800px) {
        .title {
            font-size: 2rem;
        }
    }

    .message {
        font-size: 1rem;
        margin-bottom: 50px;
        color: var(--inactive);
    }

    .logo {
        opacity: 0.5;
        margin-bottom: 20px;
    }
}