File size: 543 Bytes
ad08f08
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* We'll primarily use Tailwind classes instead of custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.App {
  text-align: center;
}

.App-header {
  background-color: #282c34;
  padding: 20px;
  color: white;
}

.hero {
  padding: 40px;
  background: linear-gradient(135deg, #16a34a, #2563eb);
  color: white;
  border-radius: 10px;
  margin: 20px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.5rem;
  }
}