-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (97 loc) · 1.79 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Montserrat", serif;
}
.container {
height: 100vh;
}
/*---------- Nav-Bar ---------- */
.navbar {
height: 10vh;
max-width: 100%;
align-items: center;
background-color: rgba(8, 8, 8, 0.969);
}
.navbar-inner {
display: flex;
max-width: 80%;
margin: auto;
justify-content: space-between;
align-items: center;
padding: 12px;
}
.line {
width: 3px;
height: 65px;
background-color: #ffffff;
}
.list {
display: flex;
list-style-type: none;
gap: 50px;
color: #ffffff;
}
.flexgrow3 {
display: flex;
flex-grow: 3;
justify-content: flex-start;
align-items: center;
gap: 90px;
}
.flexgrow1 {
display: flex;
flex-grow: 1;
justify-content: center;
align-items: center;
}
/*--------- Navbar-Button ----------*/
.button-small {
padding: 8px 16px;
border-radius: 8px;
border: none;
background-color: #ba0cc5;
color: #ffffff;
font-size: 18px;
}
/*---------- Hero-Section ----------*/
.hero {
background-image: url(./assets/bg.png);
height: 90vh;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 40px;
}
.hero-heading {
font-size: 95px;
display: inline-block;
max-width: 60%;
text-align: center;
color: #ffffff;
line-height: 1;
}
.hero-description {
font-size: 30px;
color: #ffffff;
}
/*---------- CTA-Button ---------*/
.button-large {
padding: 12px 24px;
border-radius: 8px;
border: none;
background-color: #ba0cc5;
color: #ffffff;
font-size: 24px;
}
/*--------- Hover-Effects ----------*/
.button-large:hover,
.button-small:hover {
background: rgb(92, 4, 225);
background: linear-gradient(to right bottom, #530791, #a053df);
}