17 lines
317 B
CSS
17 lines
317 B
CSS
|
|
body {
|
|
background-color: #F3F4F6;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(to right, #3B82F6, #60A5FA);
|
|
color: white;
|
|
}
|
|
|
|
.card {
|
|
background-color: #FFFFFF;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
}
|