File size: 1,073 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
52
53
54
55
56
57
58
59
60
61
62
63
64
.ProfileModal {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #141414;
    border: none;
    border-radius: none;
    padding: 0;
    outline: none;
}

.ProfileModal > img {
    height: 45px;
    width: 140px;
    margin-left: 20px;
    padding: 8px
}

.ProfileDiv {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: 30%;
    transform: translateY(-50%);
}

.ProfileDiv > h1 {
    color: rgb(255, 255, 255);
    font-weight: lighter;
    font-size: 6.5vw;
}

.horizontalComp {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ProfileButton {
    border: 1px solid transparent;
    border-color: grey;
    background-color: transparent;
    color: grey;
    text-transform: uppercase;
    padding: .5em 1.5em;
    letter-spacing: 2px;
    font-size: .9em;
    outline: 0;
}

.ProfileButton:hover {
    border-color: white;
    color: white;
}

@media(min-width: 600px) {
    .ProfileDiv > h1 {
        font-size: 3.5vw;
    }
}