-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
81 lines (69 loc) · 1.34 KB
/
styles.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(to bottom, #feffff, #f9fafa);
font-family: Arial, sans-serif;
height: 100vh;
display: flex;
flex-direction: column;
}
.container {
display: flex;
flex: 1;
flex-wrap: nowrap; /* Prevent wrapping inside the container */
}
.left-section, .right-section {
width: 50%;
}
.left-section {
display: flex;
flex-direction: column;
justify-content: center;
padding: 40px;
}
.left-section h1 {
font-size: 3rem;
color: #333;
}
.left-section h2 {
font-size: 2rem;
color: #555;
margin-bottom: 20px;
}
.left-section p {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 30px;
color: #666;
}
.social-icons {
display: flex;
gap: 20px;
align-items: center; /* Aligns icons centrally */
}
.social-icons img {
width: 40px;
height: 40px;
object-fit: cover; /* Ensures the image fits without stretching */
display: block; /* Ensures no extra space around the image */
}
.right-section {
display: flex;
justify-content: center;
align-items: center;
}
.right-section img {
max-width: 100%;
height: auto;
}
footer {
text-align: center;
padding: 10px 0;
background-color: #f9fafa;
font-size: 0.8rem;
color: #888;
width: 100%;
}