File size: 729 Bytes
f46b416
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.landing-page {
  background-image: url('./../../images/landing/landing-banner.webp'); /* Replace with your image path */
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-shade {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark shade over the image */
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  text-align: center;
  color: white;
}

.title {
  font-size: 4rem;
  margin-bottom: 20px;
}

.description {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.button-group-demo {
  display: flex; 
  flex-direction: column;
}

.button-demo {
  margin-bottom: 10px;
}