-
Notifications
You must be signed in to change notification settings - Fork 0
/
LandVault.css
84 lines (66 loc) · 1.45 KB
/
LandVault.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
body, html, #root {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #2B2A8E, #5E2577, #EC7A28);
background-size: 400% 400%;
animation: gradientAnimation 8s ease infinite;
}
@keyframes gradientAnimation {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.land-vault {
text-align: center;
padding: 50px;
}
.header h1 {
font-weight: 600;
color: white;
background-color:transparent;
margin: 0;
padding-bottom: 10px;
}
.description-box {
background: rgba(255, 255, 255, 0.2); /* Glassy effect */
border-radius: 8px;
padding: 15px;
backdrop-filter: blur(10px); /* Adds the blur effect */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional for a shadow effect */
border: 1px solid rgba(255, 255, 255, 0.3); /* Optional for a subtle border */
}
/*
.description-box p {
margin: 0;
font-weight: 600;
color: #666;
}
img{
width: 80%;
height: 80%;
} */
p{
font-weight: bold;
margin: auto;
font-size: 2rem;
text-align: center;
}
.button {
background-color: blue;
color: #fff;
width: 8.5em;
height: 2.9em;
/* border: #3654ff 0.2em solid; */
border-radius: 11px;
text-align: center;
transition: all 0.6s ease;
}
.button:hover {
background-color: #340136;
cursor: pointer;
}