-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (51 loc) · 876 Bytes
/
style.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
* {
margin: 0;
padding: 0;
}
body {
background-image: url("./carrish.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: -20% -30%;
}
.container {
/*background-color: aqua;*/
width: 80%;
margin: 0 auto;
}
.top-header .container {
background-color: burlywood;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
#main_nav {
display: flex;
justify-content: space-between;
align-items: center;
list-style: none;
}
#main_nav li {
margin-right: 20px;
}
#main_nav li:last-child {
margin-right: 0px;
}
.second {
height: 400px;
display: flex;
align-items: center;
text-align: center;
}
.third {
background-color: white;
padding: 100px 0;
}
.second h2 {
text-align: center;
color: white;
font-size: 50px;
font-weight: 900;
text-decoration: underline;
}