-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
51 lines (44 loc) · 935 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
42
43
44
45
46
47
48
49
50
51
body {
margin: 0;
font-family: 'Arial', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #f0f0f0;
}
.card {
background: #ffffff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
width: 300px;
transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card-content h1 {
margin: 0;
font-size: 24px;
color: #333;
}
.card-content .title {
margin: 10px 0;
font-size: 18px;
color: #777;
}
.card-content .contact {
margin: 20px 0 0;
font-size: 14px;
color: #555;
}
.card-content .contact a {
color: #3498db;
text-decoration: none;
}
.card-content .contact a:hover {
text-decoration: underline;
}