-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (77 loc) · 1.46 KB
/
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
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
@import url(https://fonts.googleapis.com/css2?family=Montserrat);
@import url(https://fonts.googleapis.com/css?family=Cardo);
body{
margin: 0px;
padding: 0px;
font-family: "Cardo", serif;
}
.navbar{
position: fixed;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
flex-wrap: wrap;
background-color: white;
width: 100%;
height: 70px;
z-index: 1;
}
.nav{
display: flex;
justify-content: right;
list-style: none;
margin-right: 15%;
}
.logo{
flex: 1 1 auto;
margin-left: 10%;
letter-spacing: -7px;
font-weight: 800;
font-family: "Monserrat", sans-serif;
font-size: 30px;
text-decoration: none;
color: #000;
}
a{
margin: 15px;
color: #000;
text-decoration: none;
text-transform: uppercase;
font-family: "Monserrat", sans-serif;
font-weight: 600;
text-decoration: none;
font-size: 15px;
}
a:hover{
color: #000;
}
#video{
position: relative;
right: 0;
bottom: 0;
width: 100%;
height: 100vh;
background-repeat: no-repeat;
}
h1{
font-family: "Montserrat", sans-serif;
margin-left: 20px;
}
.about-area,.bookings-area{
background-color: black;
color: white;
padding-top: 10px;
padding-bottom: 10px;
}
.packages-area,.contact-area{
background-color: white;
color: black;
padding-top: 10px;
padding-bottom: 10px;
}
p{
padding-left: 20px;
padding-right: 20px;
font-size: 20px;
}