-
Notifications
You must be signed in to change notification settings - Fork 323
/
Copy pathstyle.css
99 lines (88 loc) · 1.71 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Red Rose", cursive;
}
body {
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url("./assets/pexels-maxyne-barcel-10402282 1.png");
background-size: cover;
background-attachment: fixed;
}
/* ------------------------------ */
/* ---------- NAVBAR ------------ */
/* ------------------------------ */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 60px 0 60px;
margin-top: 55px;
}
.list {
display: flex;
align-items: center;
gap: 63px;
list-style: none;
font-family: "Red Rose";
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 22px;
color: #ffc233;
}
.logo,
.list-item {
cursor: pointer;
}
.button-small {
padding: 12px 40px;
background-color: #ff505f;
border: none;
font-family: "Red Rose";
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 30px;
color: #ffffff;
cursor: pointer;
}
/* ------------------------------ */
/* ---------- HERO ------------ */
/* ------------------------------ */
.hero {
max-width: 1154px;
margin: 0 auto;
text-align: center;
margin-top: 119px;
}
.hero-heading {
font-family: "Dela Gothic One", cursive;
font-style: normal;
font-weight: 400;
font-size: 104px;
line-height: 114px;
/* or 110% */
color: #ffc233;
}
.button-large {
background: #ff505f;
font-family: "Red Rose";
font-style: normal;
font-weight: 700;
font-size: 32px;
line-height: 40px;
color: #ffffff;
border: none;
padding: 24px 56px;
margin-top: 64px;
cursor: pointer;
}
.bottom {
position: absolute;
bottom: 20px;
right: 40px;
}