-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (49 loc) · 1.07 KB
/
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
51
52
53
54
55
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: rgb(119, 81, 200);
}
.container{
width: 100%;
height: 100vh;
background-image: url(backgrnd.jpeg);
background-position: center;
display: flex;
align-items: center;
justify-content: center;
background-repeat: no-repeat;
background-size: cover;
}
.card{
width: 90%;
max-width: 300px;
color: white;
text-align: center;
padding: 50px 35px;
border: 1px solid rgba(255,255,255,0.3);
background: rgba(255, 255, 255, 0.2);
border-radius: 10px;
box-shadow: 0 4px 30px rgba(0,0,0, 0.1);
backdrop-filter: blur(5px);
}
.card img{
width: 150px;
border-radius: 50%;
background: rgba(255, 255, 255, 0);
}
.card h4{
font-size: 40px;
font-weight: 600;
margin-top: 20px;
}
.features{
display: flex;
justify-content: space-between;
padding-bottom: 5px;
background: rgba(255, 255, 255,0);
}
.items{
background-color: rgba(255, 255, 255, 0);
}