-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (66 loc) · 1.39 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
html, body {
margin: 0;
padding: 0;
font-weight: 300;
font-family: lato;
}
.navigation{
display: flex;
justify-content: center;
width: 100%;
}
.navigation li{
display: inline;
}
.navigation a{
float: center;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navigation a:hover{
background-color: rgb(204, 197, 197);
}
.image-container{
display: flex;
justify-content: center;
text-align: center;
margin-left: auto;
margin-right: auto;
width: 100vw;
background-size: cover;
background-repeat: no-repeat;
background-position-x: center;
background-color: rgb(205, 209, 209);
background-blend-mode: multiply;
padding-bottom: 20%;
}
.text-container{
margin-left: auto;
margin-right: auto;
margin-top: 10%;
width: 90%;
max-width: 750px;
color: white;
}
.change-view{
background-image: url("./resources/first-image.jpeg");
}
.change-view h1{
font-size: 4rem;
}
.change-view p{
font-size: 2rem;
}
.luxury-included{
background-image: url("./resources/second-image.jpg");
}
.quality-inclusion{
background-image: url("./resources/third-image.jpg");
}
.award-recognition{
background-image: url("./resources/fourth-image.jpg");
}