-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (65 loc) · 1.17 KB
/
style.css
File metadata and controls
79 lines (65 loc) · 1.17 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
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap");
body {
font-family: "Montserrat", sans-serif;
}
.container {
background-image: url("assets/bg.png");
background-size: cover;
height: 100vh;
}
/* ----- Navbar-Section ----- */
.navbar {
display: flex;
justify-content: space-around;
align-items: center;
background-color: #0d0d0d;
}
.logo {
padding: 9px 0;
}
.line {
border-left: 3px solid #555;
height: 50px;
}
.list {
list-style: none;
display: flex;
margin-right: 5rem;
}
.list-item {
margin: 0 1.5rem;
color: #ffffff;
}
.button-small {
border-radius: 5px;
padding: 5px 1.2rem;
border: none;
background-color: #e246e2;
color: #ffffff;
}
/* ----- HERO-SECTION ----- */
.hero {
display: flex;
align-items: center;
flex-direction: column;
margin: 5rem 20rem;
}
.hero-heading {
font-size: 4.8rem;
color: #ffffff;
font-weight: 700;
}
.hero-description {
color: #ffffffe4;
margin-top: -2rem;
font-size: 1.3rem;
}
.button-large {
margin-top: 3rem;
border-radius: 5px;
background-color: #e246e2;
color: #ffffff;
font-size: 1.3rem;
border: none;
padding: 7px 1rem;
}