1+ body {
2+ margin : 0 ;
3+ font-family : 'Arial' , sans-serif;
4+ background : linear-gradient (180deg , # FDD86C 8.1% , # FF7D1F 100% );
5+
6+ display : flex;
7+ flex-direction : column;
8+ align-items : center;
9+ justify-content : center;
10+ height : 100vh ;
11+ }
12+
13+ header {
14+ width : 100% ;
15+ position : absolute;
16+ top : 0 ;
17+ background-color : transparent;
18+ padding : 10px 0 ;
19+ }
20+
21+ nav {
22+ display : flex;
23+ justify-content : space-between;
24+ align-items : center;
25+ width : 90% ;
26+ margin : 0 auto;
27+ }
28+
29+ .logo img {
30+ height : 100px ;
31+ width : 100px ;
32+ position : relative;
33+ }
34+
35+ .nav-links {
36+ list-style : none;
37+ display : flex;
38+ gap : 50px ;
39+ margin : 25px ;
40+ padding : 10px 20px ;
41+ background-color : # FDD86C ;
42+ border-radius : 25px ;
43+
44+ box-shadow : 0 4px 6px # FF7D1F ;
45+ }
46+
47+ .nav-links li a {
48+ text-decoration : none;
49+ color : # 000 ;
50+ padding : 10px 15px ;
51+ font-size : x-large;
52+
53+ }
54+ .nav-actions {
55+ display : flex;
56+ align-items : center;
57+ gap : 10px ;
58+ }
59+
60+ .search-btn , .sponsor-btn {
61+ background : none;
62+ border : none;
63+ cursor : pointer;
64+ font-size : 18px ;
65+
66+ }
67+
68+ .search-btn {
69+ background-color : transparent;
70+ border-radius : 5px ;
71+ padding : 5px 10px ;
72+ }
73+
74+ .sponsor-btn {
75+ background-color : whitesmoke;
76+ border : none;
77+ border-radius : 25px ; /* Rounded corners */
78+ box-shadow : 0 2px 5px rgba (0 , 0 , 0 , 0.2 ); /* Drop shadow effect */
79+ color : # 000000 ; /* Black text color */
80+ font-size : 24px ;
81+ cursor : pointer;
82+ display : flex;
83+ align-items : center;
84+ justify-content : center;
85+ gap : 7px ; /* Space between icon and text */
86+ transition : transform 0.1s ease; /* Smooth click effect */
87+ width : 150px ;
88+ padding : 7px 7px ;
89+ font-family : cursive;
90+ margin-right : 7px ;
91+
92+ }
93+ .sponsor-btn : active {
94+ transform : translateY (1px ) ;
95+ }
96+ # heart {
97+ color : red;
98+ }
99+
100+ .main-content {
101+ text-align : center;
102+ margin-top : 80px ;
103+ display : flex;
104+ align-items : center;
105+ justify-content : center;
106+ flex-direction : column;
107+ }
108+
109+ .get-started-btn {
110+ background-color : # fff ;
111+ border-radius : 25px ;
112+ padding : 10px 20px ;
113+ cursor : pointer;
114+ font-size : 16px ;
115+
116+
117+ }
118+
119+ .star-button {
120+ background-color : whitesmoke;
121+ border : none;
122+ border-radius : 25px ; /* Rounded corners */
123+ box-shadow : 0 2px 5px rgba (0 , 0 , 0 , 0.2 ); /* Drop shadow effect */
124+ color : # 000000 ; /* Black text color */
125+ font-size : 24px ;
126+ cursor : pointer;
127+ display : flex;
128+ align-items : center;
129+ justify-content : center;
130+ gap : 7px ; /* Space between icon and text */
131+ transition : transform 0.1s ease; /* Smooth click effect */
132+ width : 150px ;
133+ padding : 7px 7px ;
134+ font-family : cursive;
135+ }
136+
137+ .star-button : active {
138+ transform : translateY (1px ); /* Slight move down on click */
139+ }
140+
141+ .star-icon {
142+ color : # FFD700 ; /* Yellow star color */
143+ font-size : 20px ; /* Slightly larger than text */
144+ }
145+
146+ .get-started-btn {
147+ /* background-color: #FFFFFF; White background */
148+ border : none;
149+ border-radius : 25px ; /* Rounded corners */
150+ box-shadow : 0 2px 5px rgba (0 , 0 , 0 , 0.2 ); /* Drop shadow effect */
151+ color : # 000000 ; /* Black text color */
152+ font-size : 16px ;
153+ cursor : pointer;
154+ display : flex;
155+ align-items : center;
156+ justify-content : center;
157+ gap : 7px ; /* Space between icon and text */
158+ transition : transform 0.1s ease; /* Smooth click effect */
159+ width : 180px ;
160+ background-color : whitesmoke;
161+ font-family : cursive;
162+ }
163+ .get-started-btn : active {
164+ transform : translateY (1px ); /* Slight move down on click */
165+ }
166+
167+ h1 {
168+ font-size : 96px ;
169+ color : # 000 ;
170+ margin : 0 ;
171+ font-family : 'Arial Black' , sans-serif;
172+ }
173+
174+ p {
175+ font-size : 24px ;
176+ color : white;
177+ margin : 20px ;
178+ font-family : cursive;
179+ }
0 commit comments