﻿body
{
}
@keyframes logo-bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.logo-animated {
    animation: logo-bounce 3s infinite;
}


nav-link .active {
    font-weight: bold;
    color: black;
}
.navbar a {
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
}

    .navbar a:hover {
        color: #3498db;
        transform: translateY(-3px);
    }


.text-container {
    max-width: 650px;
    margin: 50px auto;
    text-align: center; 
}

    .text-container h2 {
        font-size: 36px;
        margin-bottom: 20px;
        color: #2c3e50;
    }

    .text-container p {
        font-size: 18px;
        line-height: 1.6;
        color: #555;
        margin-bottom: 25px;
    }


