-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
35 lines (26 loc) · 828 Bytes
/
styles.css
File metadata and controls
35 lines (26 loc) · 828 Bytes
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
*{
margin:0;
padding:0;
}
.carousel{
height: 500px;
}
.carousel .carousel-item{
width:400px;
}
p{
align-items: center;
}
.heading {
text-align: center;
padding: 30px;
color: white;
text-shadow: 6px 6px 6px rgba(1, 1, 1, 1);
}
body {
background-image: url('./assets/Untitled\ design.png'); /* Replace 'background.jpg' with the actual path to your background image */
background-size: cover; /* This property scales the image to cover the entire body */
background-repeat: no-repeat; /* Prevents the background image from repeating */
background-attachment: fixed; /* Fixed background to prevent scrolling */
background-position: center center; /* Centers the background image horizontally and vertically */
}