-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (70 loc) · 1.16 KB
/
style.css
File metadata and controls
71 lines (70 loc) · 1.16 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
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Rubik', sans-serif;
}
body{
background-color: rgb(250, 246, 239);
height: 90vh;
width: 50%;
margin: 5px 10px;
}
.nav {
display: flex;
}
.nav a{
text-decoration: none;
color: rgb(152, 116, 16);
font-weight: 600;
font-size: 20px;
margin: 20px 0px 20px 20px;
}
.hero h1{
color: #498703;
}
#main-sec{
display: flex;
padding: 20px;
justify-content: space-evenly;
align-items: center;
}
.first{
line-height: 55px;
}
.first h1{
font-size: 45px;
}
.first h3{
font-size: 35px;
}
#main-sec img{
width: 300px;
}
.hero h4{
font-size: 28px;
margin: 5px 0;
justify-content: center;
display: flex;
color:#cc655e;
letter-spacing:1px ;
word-spacing: 2px;
}
.hero p strong{
color: #498703;
}
.hero p{
word-spacing: 2px;
letter-spacing: 0.5px;
margin: 20px 0 0 20px;
line-height: 25px;
font-size: 18px;
}
.hero a{
color: black;
font-weight: 800;
font-size: 22px;
margin-left: 22px;
letter-spacing: 0.5px;
}