-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
59 lines (49 loc) · 1.16 KB
/
index.css
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
/*
Copyright (c) Swarit Choudhari all rights reserved, visit https://swaritchoudhari.vercel.app/
*/
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
footer{
display: table;
text-align: center;
margin-left: auto;
margin-right: auto;
}
h1 {
font-family: 'Lora';
}
body {
text-align: center;
font-family: 'Open Sans';
}
a {
text-decoration: none;
color: blue;
}
img {
border-radius: 10px;
}
.container-1 {
display: flex;
align-items: center;
text-align: center;
justify-content: center;
}
.image-container {
position: relative;
margin-right: 10px; /* Adjust this value to control the space between images */
}
.image-container:last-child {
margin-right: 0; /* Remove margin for the last image */
}
.text-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #333;
color: #fff;
padding: 10px;
z-index: 1;
border-radius: 20px;
}