-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (97 loc) · 2.02 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
100
101
102
103
104
105
106
107
108
109
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Palette+Mosaic&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
.container {
height: 100vh;
width: 100%;
background-image: url(images/hero.webp);
background-position: center;
background-size: cover;
padding-right: 5%;
padding-left: 3%;
box-sizing: border-box;
position: relative;
}
.logo {
font-size: 50px;
color: #eda134;
margin-top: 5px;
font-family: 'Palette Mosaic', cursive;
text-transform: uppercase;
cursor: pointer;
}
.content {
position: relative;
}
h1 {
font-family: 'Lobster', cursive;
text-transform: uppercase;
font-weight: 800;
margin-top: 100px;
letter-spacing: .1em;
font-size: 70px;
color: #1b1b1b;
}
h1 .style {
color: #eda134;
font-size: 80px;
font-weight: 800;
font-family: 'Lobster', cursive;
}
.text {
position: relative;
display: flex;
align-items: center;
}
.btn {
background-color: #eda134;
margin-top: 80px;
padding: 15px 45px;
border: none;
outline: none;
transition: .5s;
text-transform: uppercase;
color: #fff;
cursor: pointer;
font-weight: 700;
font-size: 24px;
display: block;
border-radius: 30px;
background-size: 200% auto;
box-shadow: 3px 8px 22px rgba(22, 21, 21, .15);
}
.social-media {
font-family: 'Poppins', sans-serif;
margin-top: 80px;
margin-left: 50px;
text-decoration: none;
font-size: 27px;
}
.icons {
color: #eda134;
padding: 12px 12px 10px 12px;
border-radius: 50%;
background-color: #fff;
margin-left: 10px;
height: 27px;
width: 27px;
text-align: center;
box-shadow: 3px 8px 22px rgba(22, 21, 21, .15);
}
.icons:hover {
transform: scale(1.1);
color: #fff;
background-color: #eda134;
transition: all .5s;
}
.image {
position: absolute;
width: fit-content;
bottom: 0;
height: 60%;
margin-left: 810px;
margin-bottom: 120px;
}