File size: 842 Bytes
1a11305
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.popup {
    display: none;
    /* Initially hide the modal */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Transparent background with slight opacity */
    text-align: center;
    z-index: 10;
    /* Ensure modal stays above other content */
}

.popup.active {
    display: block;
    /* Show the modal when the 'active' class is added */
}

.top-bar {
    position: absolute;
    top: 10px;
    right: 10px;
}

.close-btn {
    color: red;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.close-btn:hover {
    color: #f1f1f1;
}

.large-image {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    margin-top: 12px;
    margin-bottom: 12px;
    display: block;
}

.image {
    cursor: pointer;
}