-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (81 loc) · 1.54 KB
/
style.css
File metadata and controls
82 lines (81 loc) · 1.54 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
80
81
82
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family:Haettenschweiler, 'Arial Narrow Bold', sans-serif;
overflow: hidden;
}
a{
text-decoration: none;
color: aliceblue;
text-transform: uppercase;
}
header{
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 2;
display: flex;
align-items: center;
justify-content: space-between;
padding: 30px 70px;
}
.logo{
text-transform: uppercase;
font-size: 2rem;
letter-spacing: 2px;
}
nav ul{
display: flex;
list-style: none;
flex-wrap: wrap;
}
nav a{
margin: 0 15px;
transition: color .4s ease;
}
nav a:hover{
color: crimson;
}
.banner{
position: relative;
height: 100vh;
width: 100%;
background: url(./bg.jpg);
background-position: center center;
background-size: cover;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.banner .content h3{
color: aliceblue;
letter-spacing: 12px;
text-transform: uppercase;
font-size: 15px;
font-weight: 300;
}
.banner .content h2{
font-size: 4rem;
font-weight: 400;
color: #ffffff;
text-transform: capitalize;
margin: 2rem 0;
letter-spacing: 2px;
}
.btn{
padding: 15px 30px;
border-radius: 50px;
background: crimson;
margin-right: 10px;
transition: opacity .4s ease;
letter-spacing: 2px;
}
.btn:hover{
opacity: .6;
}