-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
54 lines (42 loc) · 842 Bytes
/
style.css
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: rgb(27, 27, 27);
font-family: 'Montserrat','Gillburt';
height: 125vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: #e7e7e7
}
.wrapper {
display: flex;
align-items: center;
flex-direction: column;
}
.wrapper h1 {
font-size: 3rem;
}
.wrapper .message {
font-size: 1.5rem;
padding: 20px;
text-align: center;
width: 60%;
}
.btn {
background: #612c8f;
text-decoration: none;
font-size: 1.5rem;
padding: 12px;
border-radius: 10px;
color: #dfdede;
cursor: pointer;
}
.btn:hover {background: #6a3b92 ;}
.copyRights {
margin-top: 60px;
}