-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (80 loc) · 1.62 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
@import url('https://fonts.googleapis.com/css?family=Raleway');
* {
box-sizing: border-box;
margin:0;
padding: 0;
font-family: 'Bebas Neue', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
nav {
height: 80px;
background: #111109;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0rem calc((100vw-1300px)/2);
}
.logo {
color:white;
font-size: 3 rem;
padding: 0 2rem;
}
nav a{
text-decoration: none;
color: white;
padding: 0 1.5rem;
}
.hero{
background: url("./Hero\ Image.png");
background-size: auto;
background-repeat: no-repeat;
background-position: center center;
}
.hero-container{
display:flex;
justify-content: center;
height: 100vh;
padding: 3rem calc((100vw - 1300px) /2);
}
.column-left {
position:absolute;
top: 50%;
text-align: center;
justify-content: center;
color: white;
padding: 0rem 2rem;
}
.column-left h1 {
margin-bottom: 1rem;
font-size: 5rem;
font-weight:lighter;
letter-spacing: 0.5rem;
}
.column-left p{
margin-bottom: 2rem;
font-size: 1.5rem;
line-height: 1.5;
font-family: "Raleway",sans-serif;
}
button{
padding: 1rem 3rem;
font-size: 1rem;
font-family: "Raleway",sans-serif;
border: none;
color: white;
background: black;
cursor: pointer;
border-radius: 50px;
}
button:hover {
background-color: #fff;
color: black;
}
.hero-image{
width:100%;
height: 100%;
}
@media screen and (max-width: 768px) {
.hero-container{
grid-template-columns: 1fr;
}
}