/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Custom Navbar Styles */
nav {
    background-color: #6e4d4d;
    overflow: hidden;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

/* Scrolling Text (Marquee) */
marquee {
    background-color: #f0f0f0;
    color: #6e4d4d;
    font-size: 18px;
    padding: 10px;
    font-weight: bold;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

/* Hover effect for stopping scrolling text */
.bitc:hover {
    animation-play-state: paused;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px; /* Space above footer */
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Content Section */
.content {
    padding: 20px;
    margin-top: 50px;
}

h1, h2 {
    color: #333;
}

/* Additional Responsive Improvements for Bootstrap */
.container {
    max-width: 1140px;
    margin: auto;
}

/* Custom Styles for Marquee Element */
.alert-info marquee {
    color: #333;
    font-size: 18px;
    padding: 10px;
    font-weight: bold;
}

/* Make Footer stick at the bottom in case of short content */
body, html {
    height: 100%;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
}
