-
Notifications
You must be signed in to change notification settings - Fork 0
/
style6.css
57 lines (51 loc) · 1.1 KB
/
style6.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
list-style: none;
text-decoration: none;
}
body {
background-image: url('477432-beautiful-finding-nemo-wallpaper-1920x1080-ipad-retina.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
h1{
font-size: 70px;
color: rgb(255, 255, 255);
margin: 10px 50px 20px;
margin-top: 3%;
}
p{
font-size: 30px;
color: rgb(255, 255, 255);
margin: 10px 50px 20px;
margin-top: 3%;
}
.navigation{
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 40px;
box-shadow: 0 0.1rem 0.5rem #ccc;
width: 100%;
background: var(--dark);
transition: all 0.5s;
position: fixed;
}
.navigation ul{
display: flex;
align-items: center;
gap: 10rem;
}
.navigation ul li a{
color: rgb(8, 8, 39);
font-size: 17px;
font-weight: 500;
transition: all 0.5s;
}
.navigation ul li a:hover{
color: rgb(255, 255, 255);
}