-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (43 loc) · 882 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
*::before,
*::after{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
background-color: black;
text-align: center;
width: 100vw;
height: 100vh;
}
.container{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
button{
padding: 1rem 3rem;
margin: 1rem 0;
background-color: black;
color: #fff;
border: 1px solid #fff;
border-radius: 0.25rem;
font-size: 20px;
text-transform: uppercase;
letter-spacing: 3px;
cursor: pointer;
}
button:hover{
background-color: #fff;
color: #000;
border: 1px solid #000;
border-radius: 0.25rem;
}
h1{
text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
text-align: center;
}