-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
50 lines (44 loc) · 954 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
@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap");
body {
font-family: sans-serif;
background-color: #333;
color: white;
text-align: center;
max-width: 400px;
margin: auto;
min-height: 100vh;
margin-top: 30px;
}
h1 {
font-family: "Luckiest Guy", sans-serif;
font-size: 3rem;
letter-spacing: 0.1rem;
font-weight: normal;
color: #b0ffb0;
margin-bottom: 1rem;
text-align: center;
text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
main {
display: flex;
align-items: center;
justify-content: end;
flex-direction: column;
min-height: 150px;
}
button {
background-color: #bada55;
padding: 8px 18px;
border: none;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
transition: 0.3s all ease;
color: #333;
font-size: 1.5rem;
}
p {
font-size: 1.5rem;
line-height: 1.5;
}
button:hover {
background-color: #b0ffb0;
}