77 lines
1.4 KiB
CSS
77 lines
1.4 KiB
CSS
/* General Styling */
|
|
body {
|
|
font-family: 'Lato', sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
/* Navbar */
|
|
.navbar {
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
backdrop-filter: blur(10px);
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero-section {
|
|
background: linear-gradient(45deg, #0D6EFD, #0747A6);
|
|
background-size: 200% 200%;
|
|
animation: gradient-animation 10s ease infinite;
|
|
}
|
|
|
|
.google-play-badge img {
|
|
height: 60px;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.google-play-badge:hover img {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
@keyframes gradient-animation {
|
|
0% { background-position: 0% 50%; }
|
|
50% { background-position: 100% 50%; }
|
|
100% { background-position: 0% 50%; }
|
|
}
|
|
|
|
/* Features Section */
|
|
#features .card {
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
border-radius: 1rem;
|
|
}
|
|
|
|
#features .card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
|
|
}
|
|
|
|
|
|
/* Gallery */
|
|
#gallery img {
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
#gallery img:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
/* Animations */
|
|
.fade-in {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
|
|
}
|
|
|
|
.fade-in.is-visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|