html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 70px; /* Adjusted padding to create space between navbar and content */
    background: linear-gradient(45deg, #ff9999, #ffcccc, #ffe6e6, #ffcccc, #ff9999);
    background-size: 300% 300%;
    animation: gradientAnimation 10s ease infinite;
}

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

.navbar {
    background-color: rgba(255, 204, 204, 0.9);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar:hover {
    background-color: rgba(255, 204, 204, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand, .nav-link {
    color: #333 !important;
    transition: color 0.3s ease;
}

.nav-link {
    background-color: #ff6666;
    color: white !important;
    padding: 10px 15px;
    border: 1px solid #ffcccc;
    border-radius: 0;
    margin: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    background-color: #cc3333;
    transform: translateY(-2px);
}

.navbar-nav {
    display: flex;
    flex-direction: row;
}

.container {
    flex: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.jumbotron {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jumbotron:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.jumbotron h1 {
    font-size: 3rem;
    color: #ff6666;
}

.jumbotron p {
    font-size: 1.2rem;
    color: #666;
}

.list-group-item {
    background-color: #ffebf0;
    border: 1px solid #ffcccc;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.list-group-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card {
    background-color: #fff;
    border: 1px solid #ffcccc;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card img {
    border-radius: 50%;
    margin-top: 20px;
}

.card-body {
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    color: #666;
}

.btn-primary {
    background-color: #ff6666;
    border-color: #ff6666;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #cc3333;
    border-color: #cc3333;
}

.btn-secondary {
    background-color: #ff9800;
    border-color: #ff9800;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e65100;
    border-color: #e65100;
}