File size: 700 Bytes
4800d91
 
 
 
 
767c597
 
4800d91
 
 
 
767c597
 
4800d91
 
 
 
 
 
 
 
 
 
 
 
acb6b7b
767c597
 
4800d91
 
acb6b7b
767c597
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
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure body and html are 100% height */
html, body {
    height: 100%;
    overflow-x: hidden;
}

/* Container that holds the background images */
.image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Add smooth transition effect for background changes */
    transition: background-image 0.2s ease-in-out;
}

/* Ensure the scrollable area is tall enough to allow scrolling */
body {
    height: calc(100vh * 12);  /* Adjust based on the number of images */
}