-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (46 loc) · 873 Bytes
/
styles.css
File metadata and controls
53 lines (46 loc) · 873 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
h1,h3 {
padding: 80px 80px;
font-family: Arial, Helvetica, sans-serif;
font-size: 50px;
color: #FFFFFF;
background-color:#E5E000;
}
.image {
height: 1080px;
background-image: url(img.png);
background-size: cover;
background-position: center;
}
p {
font-size: 50px;
background-color: #FFFFFF;
padding: 0 80px;
margin-top: 50px;
margin-bottom: 50px;
}
strong {
background-color: #FFFFFF;
}
.footer-container {
background-color:#E5E000 ;
height: 200px;
padding: 77px 80px;
display: flex;
justify-content: center;
}
.footer {
width:1400px;
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-text {
font-family: Arial, Helvetica, sans-serif;
font-size: 50px;
color: #FFFFFF;
}