-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
130 lines (129 loc) · 2.5 KB
/
style.css
File metadata and controls
130 lines (129 loc) · 2.5 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
padding: 0;
margin: 0;
}
body {
background: #FFF8F2;
height: 100vh;
overflow: hidden;
}
nav {
width: 90%;
margin: auto;
display: flex;
height: 10vh;
border-bottom: 3px solid #F6EDDB;
align-items: center;
justify-content: space-between;
}
nav ul {
list-style: none;
display: flex;
}
nav ul li {
font-family: 'Archivo', sans-serif;
padding: 10px 20px;
font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 20px;
letter-spacing: 0.01em;
color: #4D2D10;
}
nav li:nth-child(1) {
border-bottom: 3px solid #F8964F;
color: #F8964F;
}
nav button:nth-child(1) {
background-color: transparent;
font-family: 'Archivo', sans-serif;
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 20px;
margin-right: 8px;
letter-spacing: 0.01em;
color: #4D2D10;
}
nav button:nth-child(2) {
background-color: #F8964F;
background: #F89954;
box-shadow: -3px 8px 24px rgba(248, 153, 84, 0.35);
border-radius: 116px;
padding: 15px 25px;
color: white;
}
main {
display: flex;
margin: auto;
}
.banner-img {
display: flex;
align-content: flex-end;
height: 90vh;
}
.banner-right {
display: flex;
flex-direction: column;
align-self: center;
height: 100%;
max-width: 450px;
}
h1 {
font-family: Arial;
font-style: normal;
font-weight: 900;
font-size: 103.159px;
line-height: 97.5%;
letter-spacing: -0.005em;
color: #4D2D10;
}
h1:nth-child(2) {
text-shadow: 0px 0px 3px #f8964f;
color: #F89954;
}
p {
font-family: 'Archivo', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 17px;
line-height: 173%;
letter-spacing: -0.01em;
color: black;
margin: 43px 6px;
}
button {
border-radius: 126px;
border: none;
color: white;
font-weight: 600;
font-size: 17px;
font-style: normal;
font-family: 'Archivo', sans-serif;
line-height: 18px;
letter-spacing: 1%;
}
.cta-button {
padding: 15px 35px;
background-color: #F8964F;
}
.socials {
display: flex;
align-self: flex-end;
margin-top: 40px;
}
@media (max-width:720px) {
main {
display: flex;
flex-direction: column;
}
body {
overflow: auto;
}
.banner-img {
display: flex;
margin: auto;
width: 100%;
}
}