-
Notifications
You must be signed in to change notification settings - Fork 0
/
style3.css
102 lines (85 loc) · 1.51 KB
/
style3.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Gill Sans", sans-serif;
font-stretch: condensed;
}
body {
height: 100vh;
background-color: #081120;
margin: 0;
display: flex;
flex-direction: column;
}
li {
list-style: none;
}
a {
text-decoration: none;
color: #fff;
font-size: 1rem;
}
a:hover {
color: #2F5C88;
}
header {
position: relative;
padding: 0 2rem;
}
.navbar {
width: 100%;
height: 60px;
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
}
.navbar .links {
display: flex;
gap: 2rem;
}
.logo.img img {
display: block;
max-width: 131px;
max-height: 53px;
width: auto;
height: auto;
margin-right: 1rem;
}
.logo-text {
color: #fff;
font-size: 28px;
}
.about {
display: flex;
align-items: center;
justify-content: center;
height: 100vh; /* Set the height to 100% of the viewport height */
}
.pvdx {
max-width: 25%; /* Take up the left half of the screen */
height: auto;
}
.text {
max-width: 50%; /* Take up the right half of the screen */
padding: 20px 60px; /* Add more horizontal padding */
color: white;
text-align: left;
}
.text h2 {
font-size: 36px;
}
.text h5 {
font-size: 25px;
}
.text p {
font-size: 18px;
line-height: 20px;
}
.text p {
font-size: 18px;
line-height: 20px;
margin-bottom: 20px; /* Add margin at the bottom to create space */
}