-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pickup.css
48 lines (41 loc) · 1.05 KB
/
Pickup.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
body {
background-image: url('https://images.unsplash.com/photo-1553095066-5014bc7b7f2d?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-color: #2a296e;
opacity: 0.9;
color: #000000;
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#pickup-line {
font-size: 25px;
margin-bottom: 30px;
color: rgb(0, 0, 0);
font-weight: bold;
}
#button {
padding: 10px 20px;
font-size: 20px;
cursor: pointer;
color: #3a260a;
font-family: 'Times New Roman', Times, serif;
}
.copyright {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}