/* General page styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav {
    background-color: #333;
    text-align: center;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #ff6600; /* Hover effect */
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Scrolling message styles */
.scrolling-message {
    width: 100%;
    overflow: hidden;
    background-color: #ff6600;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    position: fixed;
    top: 0;
    z-index: 1000;
    left: 0;
}

.scrolling-message p {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 10s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Body content: Avoid overlap with scrolling message */
main {
    padding-top: 60px; /* Adjusted to create space for scrolling message */
}
