-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (100 loc) · 1.82 KB
/
style.css
File metadata and controls
106 lines (100 loc) · 1.82 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
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
104
105
106
body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
}
.container {
width: 90%;
max-width: 1200px;
margin: auto;
}
a {
text-decoration: none;
color: inherit;
}
ul {
list-style: none;
}
.flex-between {
display: flex;
justify-content: space-between;
align-items: center;
}
/* Header */
.header {
background: white;
padding: 1.5rem 0;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
position: sticky;
top: 0;
z-index: 999;
}
.auth-buttons {
display: flex;
gap: 1rem;
}
/* Hero */
.hero {
background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
padding: 5rem 0;
}
.hero-content {
display: flex;
align-items: center;
gap: 3rem;
flex-wrap: wrap;
}
.hero-content .text {
flex: 1 1 400px;
}
.hero-content .text h2 {
font-size: 3rem;
margin-bottom: 1.5rem;
}
.hero-content .text p {
font-size: 1.2rem;
margin-bottom: 2rem;
color: var(--gray);
}
.hero-content .image {
flex: 1 1 400px;
text-align: center;
}
.hero-content .image img {
width: 90%;
animation: float 6s ease-in-out infinite;
}
/* Contact */
.contact {
padding: 5rem 0;
}
.contact h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
}
.contact-form {
background: white;
max-width: 600px;
margin: auto;
padding: 2rem;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: var(--radius);
font-size: 1rem;
}
.form-group textarea {
min-height: 150px;
resize: vertical;
}