-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage_custom.scss
45 lines (38 loc) · 1.03 KB
/
image_custom.scss
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
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
text-align: center; /* Ensure text elements are centered as well */
background-image: url('images/main_cat.jpg');
background-size: cover;
background-position: center;
color: white;
}
.text-container {
color: white; /* Adjust text color for visibility against your background */
/* Additional styling for your text container */
}
.extra-large {
font-size: 72px; /* Or any size larger than the default <h1> size */
font-weight: bold; /* Optional: makes it visually more impactful */
}
.hero-section {
// background-image: url('images/main_cat.jpg');
// background-size: cover;
// background-size: 100%;
color: white;
text-align: center;
padding: 0px 0px;
}
.cta-button {
background-color: #007bff;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
}