-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpop.css
More file actions
42 lines (42 loc) · 838 Bytes
/
pop.css
File metadata and controls
42 lines (42 loc) · 838 Bytes
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
*{
margin: 0;
padding: 0;
}
body{
background: rgba(19, 19, 23, 0.9);
}
section{
background-image: url("modal-background.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
width: 100%;
/* filter: blur(6px); */
}
.center{
color: white;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1{
text-align: center;
font-size: 50px;
font-family: sans-serif;
margin: 40px;
text-transform: capitalize;
}
button{
margin: 0 auto;
height: 60px;
width: 500px;
background: #5454ff;
border: none;
border-radius: 6px;
font-size: 25px;
color: #000;
cursor: pointer;
}