-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
94 lines (82 loc) · 1.71 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
83
84
85
86
87
88
89
90
91
92
93
94
#hero{
height: 800px;
background-image: url("/images/places/ocean.jpg");
background-position: center;
background-size: cover;
}
#hero-content{
width: 900px;
background-color: rgba(51, 47, 47, 0.8);
box-shadow: 2px 4px 8px rgb(68, 67, 67);
border-radius: 8px;
text-align: center;
padding: 50px 0;
margin: 0 auto;
position: relative;
top: 200px;
}
#hero-content h1{
color: white;
text-transform: uppercase;
font-size: 50px;
font-family: "Raleway",sans-serif;
margin: 0;
}
#hero-content p{
color: white;
text-transform: uppercase;
font-size: 24px;
font-weight: 300;
margin-bottom: 32px;
}
#hero-content a{
text-decoration: none;
background-color: rgb(255,251,0);
padding: 12px 24px;
color: black;
font-size: 24px;
font-weight: bold;
border-radius: 8px;
box-shadow: 2px 4px 8px rgb(68,67,67);
}
#hero-content a:hover{
background-color: rgb(255,238,0);
}
#highlights{
padding: 24px;
background: linear-gradient(0deg, rgb(227,255,253), rgb(202, 243, 240));
}
#highlights h2{
text-transform: uppercase;
text-align: center;
font-size: 40px;
color: rgb(59, 65, 64);
margin: 24px 0;
}
#destinations {
display: flex;
justify-content: center;
width: 90%;
margin: auto;
margin-bottom: 40px;
}
.destination{
margin: 0 20px;
text-transform: uppercase;
}
.destination p{
text-align: center;
font-size: 24px;
color: rgb(124, 123, 123);
margin: 20px 0;
}
.destination img{
height: 200px;
width: 100%;
box-shadow: 2px 4px 8px rgb(68, 67, 67);
border-radius: 10px;
object-fit: cover;
}
.destination strong{
color: rgb(0, 160, 117);
}