-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhero.css
89 lines (85 loc) · 1.98 KB
/
hero.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
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;700&family=Lilita+One&family=Poppins:wght@400;700;800&family=Quicksand:wght@400;500&display=swap');
/*
font-family: 'Josefin Sans', sans-serif;
font-family: 'Lilita One', cursive;
font-family: 'Poppins', sans-serif;
font-family: 'Quicksand', sans-serif; */
.top-main{
/* background: rgb(47, 44, 85); */
/* background: url('./newbg.png'); */
/* background-image:linear-gradient(222deg,rgba(18, 18, 51, 0.216),rgba(30, 8, 87, 0.679)),url('./newbg.png') ; */
color: aliceblue;
margin-top: 1rem;
width: 100vh;
max-width: 100%;
height: 70vh;
max-height: 80vh;
padding: 14px;
}
.about {
/* background: #7e5ab0; */
width: 70%;
height: 80%;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
line-height: 1.2;
font-size: 18px;
}
.about #m-title {
color: #ED254E;
font-size: 2.25rem;
font-family: 'Poppins', sans-serif;
font-weight: 800;
}
#s-title {
margin:16px 0 16px 0;
font-size: 35px;
color: #6fffe9;
}
#m-p{
line-height: 1.5;
}
.btns{
/* background: #2a0543; */
display:flex;
width: 80%;
height: 3rem;
align-items: center;
justify-content: space-between;
padding: 10px;
}
#start,#demo{
width: 100%;
height: 100%;
margin: 5px;
border: none;
font-family: 'Quicksand', sans-serif;
font-weight:500;
/* background: #000; */
}
#start{
background: #f9dc5c;
color: rgb(0, 0, 0);
display: flex;
align-items: center;
justify-content: center;
}
#demo{
background: #3a506b;
color: white;
}
#start:hover {
background:#d8b415;
box-shadow: 0px 2px 10px 1px #f9dc5c;
cursor: pointer ;
}
#demo:hover {
cursor: pointer;
box-shadow:0px 2px 10px 1px #6fffe9;
}
a:hover{
cursor: pointer;
color: #6fffe9;
}