-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBanner.css
56 lines (51 loc) · 1.09 KB
/
Banner.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
.banner {
display: flex;
font-size: 18px;
color: rgb(245, 224, 178);
text-shadow: -2px 2px 10px #000000;
background-image: url("C:\Users\AFRPNIGERIA\Downloads\Sero App_files\src\Images\services.webp");
backdrop-filter: blur (10px);
justify-content: center;
align-items: center;
text-align: center;
background-size: cover;
background-position: center;
padding: 22px;
height: 40vh;
width: 154vh;
}
.banner-content {
max-width: 1200px;
}
.banner h1{
font-size: 3.8rem;
margin-bottom: 10px;
margin-top: 8px;
}
.banner p {
color:rgb(255, 255, 255);
font-size: 1.4em;
margin-bottom: 22px;
}
.banner -button{
font-size: 1rem;
color: aliceblue;
padding: 12px 22px;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.3s ease-out;
}
@media (max-width: 678px) {
.banner {
height: 80vh;
width: min-content;
display: flex;
}
.banner h1 {
font-size: 2rem;
}
.banner p{
font-size: 1rem;
}
}