-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (100 loc) · 1.67 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
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
list-style-type: none;
text-decoration: none;
}
body{
background-image: url(images/bg1.jpg);
background-size: cover;
}
nav{
width: 100vw;
height: 4rem;
position: fixed;
top: 0rem;
z-index: 3;
}
.navcontainer{
height: 100%;
display: flex;
margin: 0 4rem 0;
justify-content: space-between;
align-items: center;
}
.navcontainer img{
left: 20px;
height: 50px;
}
.navmenu{
display: flex;
align-items: center;
gap: 2rem;
}
.navmenu a{
font-size: 1rem;
font-weight: 400;
color: #0f0;
}
.window-scroll{
background: #000;
}
h1{
padding: 20px;
font-size: 3rem;
font-family: 'Playpen Sans', cursive;
color:#34d714;
text-align: center;
}
h2{
font-family: 'Playpen Sans', cursive;
color:#1bdd8f;
text-align: center;
}
section{
margin-top: 20px;
}
p{
color: #fff;
font-size: 16px;
line-height: 1.6;
}
.btn{
width: auto;
height: auto;
display: inline-block;
background: #fff;
color: #000;
padding: 1rem 2rem;
border: 1px solid transparent;
font-weight: 500;
transition: var(--transition);
}
.btn:hover{
background: transparent;
color: #fff;
border-color: #fff;
}
footer{
background: #6a6c64;
padding-top: 5rem;
}
footer img{
height: 60px;
}
.footcontain{
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 5rem;
}
.footcontain > div h4{
margin-bottom: 1.4rem;
}
.footer1 P{
margin :0 0 2rem;
}
.footer ul li{
margin-bottom: 0.7rem;
}