-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (79 loc) · 1.42 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: url(./pexels-maxyne-barcel-10402282\ 1.png);
background-repeat: no-repeat;
background-size: 1440px 700px;
height: 100vh;
display: flex;
flex-direction: column;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
width: 100px;
height: 30px;
margin: 30px 0 0 25px;
}
ul {
list-style-type: none;
display: flex;
/* margin-right: 75px; */
}
li {
padding: 19px;
font-weight: 600;
color: rgb(247, 247, 32);
font-size: 14px;
margin-top: 20px;
}
button {
color: #fff;
background-color: rgb(235, 62, 62);
border: none;
font-weight: 600;
}
.order-button {
font-size: 18px;
padding: 5px 18px;
border: none;
margin-right: 30px;
margin-top: 23px;
}
.main-text {
color: rgb(247, 247, 32);
font-weight: 900;
font-size: 65px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 75px;
}
.menu-button {
padding: 16px 25px;
margin-top: 25px;
background-color: rgb(238, 42, 42);
}
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
footer {
display: flex;
justify-content: end;
align-items: end;
margin-top: auto;
}
.scroll {
width: 120px;
height: 120px;
}