Spaces:
Running
Running
File size: 651 Bytes
6638a84 d9f47fc 6638a84 d9f47fc 6638a84 d9f47fc 6638a84 d9f47fc 6638a84 d9f47fc 6638a84 | 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 | /* Custom styles that complement Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
}
.hero {
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('http://static.photos/education/1200x630/4');
background-size: cover;
background-position: center;
}
/* Animation for cards */
article {
transition: transform 0.3s ease;
}
article:hover {
transform: translateY(-5px);
}
/* Responsive tweaks */
@media (max-width: 640px) {
.hero {
padding: 4rem 1.5rem;
}
} |