-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (45 loc) · 767 Bytes
/
style.css
File metadata and controls
56 lines (45 loc) · 767 Bytes
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
*{
margin:0;
}
h1{
color: #bc6c25
}
body{
font-family:'lato', sans serif;
}
#first-section{
background-image:url('https://images.pexels.com/photos/277253/pexels-photo-277253.jpeg');
height: 100vh;
background-size:cover;
color: #fff;
}
nav{
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul{
display:flex;
list-style-type: none;
}
nav ul li{
margin: 1rem;
}
.content {
text-align: center;
font-size: 4rem;
margin-top: 100px;
font-weight: 800;
text-transform:uppercase;
}
.content button {
font-size: 2rem;
color: #fff;
background-color: #2f70d8;
border: none;
padding: .5rem 2rem;
cursor: pointer;
}
.content button:hover {
background-color: #08347a;
}