/* styles.css */

body {
    background: linear-gradient(120deg, rgba(135, 206, 235, 0.8), rgba(173, 216, 230, 0.8), rgba(250, 250, 210, 0.8));
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2 {
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #fff;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffcc00;
}

footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.list-group-item {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-title {
    font-weight: bold;
    color: #2c3e50;
}

.btn {
    border-radius: 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary {
    background-color: #3498db;
    border: none;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: scale(1.1);
}

.btn-secondary {
    background-color: #95a5a6;
    border: none;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: scale(1.1);
}

blockquote {
    border-left: 4px solid #3498db;
    padding-left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-style: italic;
    border-radius: 5px;
    margin-bottom: 20px;
}

blockquote.footer {
    font-size: 0.9em;
    color: #888;
}
