-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
60 lines (49 loc) · 1 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
/* styles.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #968181; /* Background color for the entire page */
}
body {
background-image: url('contact.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.container {
max-width: 800px; /* Adjust as needed */
margin: 50px auto; /* Center the container */
background-color: #fff; /* Background color for the container */
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
h2 {
font-size: 30px;
color: #333;
margin-bottom: 20px;
}
.contact-info {
margin-bottom: 20px;
}
.contact-info p {
margin-bottom: 10px;
}
.contact-info p span {
font-weight: bold;
}
.contact-info p:last-child {
margin-bottom: 0;
}
/* Responsive styles */
@media (max-width: 768px) {
.container {
padding: 20px;
}
}
@media (max-width: 480px) {
.container {
max-width: 90%;
}
}