-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.css
99 lines (85 loc) · 1.86 KB
/
Contact.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: linear-gradient(to top, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 50%), url('Background.jpg');
background-position: center;
background-size: cover; /* Ensure the background image covers the entire body */
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.main {
width: 100%;
max-width: 1200px;
display: flex;
flex-direction: column;
align-items: center;
}
.navbar {
width: 100%;
max-width: 1200px;
height: 75px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
}
.icon, .menu {
height: 100%;
display: flex;
align-items: center;
}
.logo {
font-size: 45px; /* Increased font size */
font-family: Arial;
color: #ff7200;
margin-left: 20px; /* Added margin for spacing */
margin-top: 10px; /* Adjusted margin for positioning */
}
.menu ul {
list-style-type: none;
display: flex;
margin-right: 20px; /* Adjusted margin for spacing */
}
.menu ul li {
margin-left: 20px;
}
.menu ul li a {
text-decoration: none;
color: #fff;
font-weight: bold;
transition: color 0.4s ease;
font-size: 18px; /* Increased font size */
}
.menu ul li a:hover {
color: #ff7200;
}
.content {
width: 100%;
max-width: 1200px;
padding: 50px 20px;
text-align: center;
color: #fff;
}
.content h1 {
font-family: 'Times New Roman';
font-size: 50px;
letter-spacing: 2px;
}
.social-icons {
margin-top: 20px;
}
.social-icons a {
text-decoration: none;
color: #fff;
font-size: 36px;
margin-right: 20px;
}
.social-icons a:hover {
color: #ff7200;
}