/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Card Styles */
.card {
    border: none;
    overflow: hidden;
}
.card img {
    transition: transform 0.3s ease;
}
.card img:hover {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
}
footer a {
    color: #ddd;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
}
.hello{
    margin-top: 10%;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hello {
        margin-top: 37%;
    }
}
