-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (43 loc) · 881 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
body {
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
justify-content: center;
background-color: pink;
}
h1 {
font-size: 50px;
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
letter-spacing: 4px;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
white-space: nowrap;
}
.container {
text-align: center;
}
.btn {
padding: 30px 50px;
background-color: white;
border: none;
margin: 10px;
font-size: 30px;
min-width: 200px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
background-image: url("images/tom.png");
background-size: cover;
color: white;
font-family: cursive;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
cursor: pointer;
text-transform: capitalize;
}
.btn:hover {
color: pink;
}
.btn:active {
background-size: 105%;
}