17 lines
293 B
CSS
17 lines
293 B
CSS
body {
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
|
|
}
|
|
|
|
.program-card {
|
|
transition: transform .2s, box-shadow .2s;
|
|
}
|
|
|
|
.program-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
}
|