-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
41 lines (37 loc) · 815 Bytes
/
styles.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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
body {
text-align: center;
background: url(background.jpg);
background-repeat: no-repeat;
background-size: cover;
}
.cute-paragraph{
font-size: 20px;
color: #f0f0f0;
}
.cute-button {
display: inline-block;
padding: 10px 20px;
background-color: #ff85a2;
color: white;
border-radius: 20px;
text-decoration: none;
font-weight: bold;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s, transform 0.3s;
}
.cute-button:hover {
background-color: #ff6690;
transform: translateY(-2px);
}
.cute-button:active {
transform: translateY(1px);
}