-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact-us.css
81 lines (69 loc) · 1.53 KB
/
Contact-us.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
#main h1 {
margin-top: 10%;
margin-bottom: auto;
margin-left: 9px;
/* margin-right: 0%; */
font-family: 'Alkatra', cursive;
text-decoration-color: #482D1C;
text-decoration-style: underline;
font-size: 5rem;
}
#main p {
margin-top: 10px;
margin-left: 9px;
/* margin-right: 0%; */
font-family: 'Alkatra', cursive;
font-size: 2.5rem;
}
#main h3 {
margin-left: 9px;
/* margin-right: 0%; */
font-family: 'Alkatra', cursive;
text-decoration: underline;
font-size: 2.5rem;
}
#main h2 {
margin-top: 10px;
margin-left: 9px;
/* margin-right: 0%; */
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
color: #AD1D25;
font-size: 3rem;
}
.column {
/* float: right; */
/* margin: -1px 100px -10px 15px; */
display: flex;
flex-direction: column;
flex-wrap: wrap;
width: 20vw;
/* gap: 100px; */
justify-content: center;
/* align-content: space-around; */
}
.column img {
border: 15px solid #482D1C;
margin: 9px;
width: 20vw;
height: auto;
}
@media only screen and (max-width: 425px) and (min-width: 320px) {
#main {
width: 100vw;
}
.column {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100vw;
justify-content: center;
/* align-content: space-around;
align-content: center; */
}
.column img {
border: 10px solid #482D1C;
margin: 20;
width: 50vw;
height: auto;
}
}