-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (84 loc) · 1.64 KB
/
Copy pathstyle.css
File metadata and controls
99 lines (84 loc) · 1.64 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
border: 1px solid #333;
background-color: #333;
color: white;
}
.nav-links {
display: flex;
gap: 1rem;
list-style: none;
border: 2px solid white;
}
.nav-links a {
text-decoration: none;
color: white;
}
body {
font-family: 'Segoe UI', sans-serif;
background: #fff0f5;
color: #333;
margin: 0;
}
.hero {
background: url(Pink\ background\ bakery\ picture.jpg) no-repeat center center/cover;
padding: 80px 10%;
position: relative;
}
.hero-overlay {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
backdrop-filter: brightness(1);
background-color: rgba(255, 255, 255, 0.85);
padding: 40px;
border-radius: 20px;
}
.hero-image img {
width: 100%;
max-width: 100%;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.hero-text {
max-width: 500px;
margin-top: 20px;
}
.hero-text h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}
.highlight {
color: #e91e63;
font-weight: bold;
}
.hero-text p {
font-size: 1rem;
margin-bottom: 30px;
line-height: 1.6;
}
.hero-buttons .btn {
display: inline-block;
padding: 12px 25px;
margin: right 15px;
border-radius: 25px;
text-decoration: none;
font-weight: bold;
transition: background 0.3s;
}
.primary:hover {
background: #c2185b;
}
.secondary {
background: transparent;
border: 2px solid #e91e63;
color: #e91e63;
}
.secondary:hover {
background: #e91e63;
color: white;
}